-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
259 additions
and
103 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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,45 @@ | ||
full_name: | ||
type: str | ||
help: What is your name? | ||
placeholder: " optional" | ||
|
||
email: | ||
type: str | ||
help: What is your email? | ||
|
||
github: | ||
type: str | ||
help: What is your github username? | ||
|
||
app_full_name: | ||
type: str | ||
help: What is the name of your app? | ||
default: "{{ dst_path }}" | ||
validator: '{% if not app_full_name %}Required{% endif %}' | ||
|
||
app_description: | ||
type: str | ||
help: Provide a brief description of your app | ||
|
||
app_version: | ||
default: "0.1.0" | ||
help: Starting version number for your app | ||
|
||
create_doc_template: | ||
type: bool | ||
help: Would you to set up basic documentation? | ||
|
||
bids_version: | ||
default: "1.8.0" | ||
when: false | ||
|
||
snakebids_version: | ||
default: "0.0.0" | ||
when: false | ||
|
||
name_slug: | ||
default: "{{ app_full_name|lower|replace(' ', '_')|replace('-', '_') }}" | ||
when: false | ||
|
||
_jinja_extensions: | ||
- jinja2_time.TimeExtension |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
# {{app_full_name}} | ||
|
||
{{ app_description }} |
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
File renamed without changes.
File renamed without changes.
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
Oops, something went wrong.