Skip to content

Commit

Permalink
Update example app repository URL (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
velvet-shark authored Oct 17, 2023
1 parent 57b1dcb commit f64b583
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cli/src/install/ceramic_app_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tokio::io::AsyncWriteExt;

use crate::install::npm::npm_install;

const REPO: &'static str = "https://github.com/ceramicstudio/EthDenver2023Demo";
const REPO: &'static str = "https://github.com/ceramicstudio/ComposeDbExampleApp";

pub async fn install_ceramic_app_template(
key: &DidAndPrivateKey,
Expand All @@ -29,7 +29,7 @@ pub async fn install_ceramic_app_template(
let output_dir = working_directory.join(format!("{}-app", project_name));
let b_output_dir = working_directory.to_path_buf();

let unzip_dir = working_directory.join("EthDenver2023Demo-main");
let unzip_dir = working_directory.join("ComposeDbExampleApp-main");
if tokio::fs::try_exists(&unzip_dir).await? {
tokio::fs::remove_dir_all(&unzip_dir).await?;
}
Expand Down
2 changes: 1 addition & 1 deletion cli/src/install/compose_db.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ pub async fn install_compose_db(
For more information on composedb and commands to run, see https://composedb.js.org/docs/0.4.x/first-composite
You can also take a look at https://github.com/ceramicstudio/EthDenver2023Demo for more ideas on using ComposeDB."#,
You can also take a look at https://github.com/ceramicstudio/ComposeDbExampleApp for more ideas on using ComposeDB."#,
network_name
);

Expand Down

0 comments on commit f64b583

Please sign in to comment.