-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
27 lines (27 loc) · 1.03 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "Fedora Application",
"slug": "{{ cookiecutter.name|lower|replace(' ', '-') }}",
"pkg_name": "{{ cookiecutter.slug|replace('-', '_') }}",
"camel_name": "{{ cookiecutter.name|replace(' ', '') }}",
"docs_url": "https://{{ cookiecutter.slug }}.readthedocs.io",
"github_url": "http://github.com/fedora-infra/{{ cookiecutter.slug }}",
"url": "{{ cookiecutter.github_url }}",
"__year": "{% now 'utc', '%Y' %}",
"with_sqlalchemy": false,
"with_cli": false,
"with_i18n": false,
"with_flask": false,
"__prompts__": {
"with_sqlalchemy": "Add database support with SQLAlchemy?",
"with_cli": "Add a command line interface?",
"with_i18n": "Add support for translations (i18n)?",
"with_flask": "Is it a Flask application?"
},
"_extensions": ["cookiecutter.extensions.RandomStringExtension"],
"_copy_without_render": [
"LICENSES/*",
"devel/ansible/roles/*/*/*",
"*/migrations/script.py.mako",
"*/migrations/versions/*"
]
}