-
Notifications
You must be signed in to change notification settings - Fork 55
/
cookiecutter.json
43 lines (43 loc) · 994 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
37
38
39
40
41
42
43
{
"project_name": "My SHOP",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '-') }}",
"app_name": "{{ cookiecutter.project_slug|replace('-', '') }}",
"appName": "{{ cookiecutter.project_name|replace('-', '')|replace(' ', '') }}",
"description": "Blueprint for an e-commerce site based on django-SHOP",
"author_name": "John Doe",
"email": "[email protected]",
"virtual_host": "www.example.com",
"version": "1.0.0",
"timezone": "UTC",
"dockerize": [
"n",
"runserver",
"uwsgi",
"nginx"
],
"use_i18n": "y",
"languages": "de, en",
"use_paypal": "y",
"use_stripe": "y",
"use_sendcloud": "y",
"printable_invoice": "y",
"delivery_handling": [
"partial",
"common",
"n"
],
"products_model": [
"polymorphic",
"smartcard",
"commodity"
],
"use_compressor": "n",
"use_elasticsearch": "y",
"stock_management": [
"simple",
"inventory",
"n"
],
"debug": "y",
"python_version": "3.9"
}