forked from cookiecutter/cookiecutter-django
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cookiecutter.json
36 lines (35 loc) · 956 Bytes
/
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
{
"project_name": "Geopaparazzi Reference Server",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"description": "A RESTful server for Geopaparazzi cloud profiles, based on GeoDjango and PostGIS",
"author_name": "David Currie",
"email": "{{ cookiecutter.author_name.lower()|replace(' ', '-') }}@example.com",
"domain_name": "example.com",
"version": "0.1.0",
"open_source_license": [
"MIT",
"BSD",
"GPLv3",
"Apache Software License 2.0",
"Not open source"
],
"timezone": "UTC",
"windows": "n",
"use_pycharm": "n",
"use_docker": "y",
"postgresql_version":"10.3",
"js_task_runner": [
"None",
"Gulp"
],
"custom_bootstrap_compilation": "n",
"use_compressor": "n",
"use_celery": "y",
"use_mailhog": "n",
"use_sentry": "n",
"use_whitenoise": "y",
"use_heroku": "n",
"use_travisci": "n",
"keep_local_envs_in_vcs": "y",
"debug": "n"
}