Skip to content
This repository has been archived by the owner on Apr 30, 2024. It is now read-only.

Commit

Permalink
change default Evidence template project url to use /template folde…
Browse files Browse the repository at this point in the history
…r from this repo (#62)
  • Loading branch information
RandomFractals committed Jun 5, 2023
1 parent c7acae3 commit 97d53fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
},
"evidence.templateProjectUrl": {
"type": "string",
"default": "https://github.com/evidence-dev/template",
"default": "https://github.com/evidence-dev/evidence-vscode/template",
"description": "Evidence template project GitHub URL or local file:// path to the project template folder to use when creating new Evidence projects."
}
}
Expand Down
5 changes: 3 additions & 2 deletions src/commands/template.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export const gitHubUrlBase = 'https://github.com';
/**
* Default Evidence app template project github Url.
*/
export const templateProjectUrl = `${gitHubUrlBase}/evidence-dev/template`;
export const templateProjectUrl = `${gitHubUrlBase}/evidence-dev/evidence-vscode/template`;

/**
* Required Evidence template project data source configuration settings.
Expand Down Expand Up @@ -254,7 +254,8 @@ export async function cloneTemplateRepository(
window.showErrorMessage(errorMessage);
});

await timeout(15000);
// 10 seconds delay for the github repo cloning progress display
await timeout(10000);
});
}

Expand Down

0 comments on commit 97d53fa

Please sign in to comment.