Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update example app repository URL #23

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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