-
Notifications
You must be signed in to change notification settings - Fork 2
/
cookiecutter.json
42 lines (32 loc) · 1.6 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"project_name": "Project name",
"project_short_description": "A Django application package.",
"include_api": true,
"include_cmsplugin": true,
"include_frontend": true,
"init_git_repository": true,
"author_name": "Your name",
"author_email": "Your email",
"author_username": "dummy",
"pypi_username": "{{ cookiecutter.author_username }}",
"package_name": "{{ cookiecutter.project_name.lower() | replace(' ', '-') | slugify }}",
"app_name": "{{ cookiecutter.project_name.lower() | replace(' ', '_') | slugify | replace('-', '_') }}",
"__class_name": "{{ cookiecutter.package_name | replace(' ', '') | slugify | replace('-', '') | title }}",
"version": "0.1.0",
"_sveetch_djangoapp_version": "0.7.2",
"__prompts__": {
"project_name": "Input your full project name:",
"project_short_description": "Give a short description for this project:",
"include_api": "Do you need an API with DjangoREST framework?",
"include_cmsplugin": "Do you need a basic DjangoCMS plugin?",
"include_frontend": "Do you need a basic frontend with Bootstrap?",
"init_git_repository": "Do you want to init a GIT repository with an initial commit?",
"author_name": "Author full name:",
"author_email": "Author email:",
"author_username": "Author username on Github:",
"pypi_username": "Author username on PyPi:",
"package_name": "Customize your package name if needed:",
"app_name": "Customize your application module name if needed:",
"version": "Package will starts in version:"
}
}