-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update init command to download template from repo
The template has been moved to https://github.com/cbmi/harvest-template/
- Loading branch information
Showing
3 changed files
with
102 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Name of the dos-ini file containing the harvest config files | ||
HARVESTRC_PATH = '.harvestrc' | ||
|
||
# Name of the default template repo | ||
TEMPLATE_REPO = 'harvest-template' | ||
|
||
TEMPLATE_REPO_DEFAULT_VERSION = 'HEAD' | ||
|
||
TEMPLATE_REPO_URL = 'https://github.com/cbmi/' + TEMPLATE_REPO | ||
|
||
# Template URL for generating a patch for the diff range | ||
TEMPLATE_PATCH_URL = TEMPLATE_REPO_URL + '/compare/{0}...{1}.patch' | ||
|
||
# Template URL for downloading an archive (zip) of a specific version of the template | ||
TEMPLATE_ARCHIVE_URL = TEMPLATE_REPO_URL + '/archive/{0}.zip' | ||
|
||
# Template string for the name of the archive | ||
TEMPLATE_ARCHIVE = TEMPLATE_REPO + '-{0}.zip' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters