-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
54 lines (54 loc) · 1.09 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
{
"project_name": "Earn A Lot Bot",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"description": "A bot that earns a lot!",
"author_name": "Julian Wagle",
"domain_name": "earnalotbot.com",
"email": "{{ cookiecutter.author_name.lower()|replace(' ', '.') }}@email.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",
"postgresql_version": [
"13.2",
"12.6",
"11.11",
"10.16"
],
"cloud_provider": [
"AWS",
"GCP",
"None"
],
"mail_service": [
"Mailgun",
"Amazon SES",
"Mailjet",
"Mandrill",
"Postmark",
"Sendgrid",
"SendinBlue",
"SparkPost",
"Other SMTP"
],
"custom_bootstrap_compilation": "y",
"use_compressor": "y",
"use_mailhog": "y",
"use_sentry": "y",
"use_whitenoise": "y",
"use_heroku": "n",
"ci_tool": [
"None",
"Travis",
"Gitlab",
"Github"
],
"debug": "n"
}