This repository has been archived by the owner on Aug 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcookiecutter.json
84 lines (80 loc) · 3.24 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"project_name": "Project name",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ', '-') }}",
"repo_username": "emencia",
"repo_host": "github.com",
"enable_accounts": "yes",
"enable_contact_form": "yes",
"enable_porticus": "yes",
"enable_slideshows": "yes",
"enable_zinnia": "yes",
"enable_multiple_languages": "no",
"enable_https": "yes",
"deploy_user": "django",
"deploy_host": "",
"prod_host": "",
"changelog_mail_from": "",
"changelog_mail_to": "",
"secret_key": "{% for column in range(50) %}{{ 'abcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*(-_=+)'|random }}{% endfor %}",
"_copy_without_render": [
"*.gitignore",
"compass",
"templates",
"var",
".flake8",
"project/accounts",
"project/contact_form",
"project/locale",
"project/media",
"project/protected_medias/datas",
"project/mods_enabled",
"project/static",
"project/utils",
"project/webapp_statics",
"project/urls.py",
"project/templates/cookieconsent.html",
"project/templates/pagination.html",
"project/templates/404.html",
"project/templates/500.html",
"project/templates/marketing_tags.html",
"project/templates/admin",
"project/templates/cmsplugin_zinnia",
"project/templates/filebrowser",
"project/templates/googletools",
"project/templates/menu",
"project/templates/pages",
"project/templates/prototypes",
"project/templates/sitemap.json",
"project/templates/slideshows",
"project/templates/zinnia",
"project/mods_available/accounts",
"project/mods_available/admin_style",
"project/mods_available/assets",
"project/mods_available/ckeditor",
"project/mods_available/cms/__init__.py",
"project/mods_available/codemirror",
"project/mods_available/contact_form",
"project/mods_available/crispy_forms",
"project/mods_available/cookie_law",
"project/mods_available/debug_toolbar",
"project/mods_available/emencia_utils",
"project/mods_available/filebrowser",
"project/mods_available/filer",
"project/mods_available/flatpages",
"project/mods_available/google_tools",
"project/mods_available/icomoon",
"project/mods_available/__init__.py",
"project/mods_available/pdb",
"project/mods_available/porticus",
"project/mods_available/recaptcha",
"project/mods_available/sendfile",
"project/mods_available/sitemap/__init__.py",
"project/mods_available/sitemap/settings.py",
"project/mods_available/site_metas",
"project/mods_available/slideshows",
"project/mods_available/staticpages",
"project/mods_available/thumbnails",
"project/mods_available/urlsmap",
"project/mods_available/zinnia"
]
}