2013-08-15 21:59:11 +04:00
|
|
|
{
|
2018-03-04 17:32:29 +03:00
|
|
|
"project_name": "My Awesome Project",
|
2018-11-14 22:23:31 +03:00
|
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
|
2018-03-04 17:32:29 +03:00
|
|
|
"description": "Behold My Awesome Project!",
|
2018-05-13 15:09:11 +03:00
|
|
|
"author_name": "Daniel Roy Greenfeld",
|
2018-03-04 17:32:29 +03:00
|
|
|
"domain_name": "example.com",
|
2023-03-16 20:17:02 +03:00
|
|
|
"email": "{{ cookiecutter.author_name.lower() | trim() |replace(' ', '-') }}@{{ cookiecutter.domain_name.lower() | trim() }}",
|
2018-03-04 17:32:29 +03:00
|
|
|
"version": "0.1.0",
|
|
|
|
"open_source_license": [
|
|
|
|
"MIT",
|
|
|
|
"BSD",
|
|
|
|
"GPLv3",
|
|
|
|
"Apache Software License 2.0",
|
|
|
|
"Not open source"
|
|
|
|
],
|
2023-04-15 13:53:15 +03:00
|
|
|
"username_type": ["username", "email"],
|
2018-03-04 17:32:29 +03:00
|
|
|
"timezone": "UTC",
|
|
|
|
"windows": "n",
|
2023-07-03 12:55:33 +03:00
|
|
|
"editor": ["None", "PyCharm", "VS Code"],
|
2018-03-04 17:32:29 +03:00
|
|
|
"use_docker": "n",
|
2023-07-04 23:14:28 +03:00
|
|
|
"postgresql_version": ["15", "14", "13", "12", "11", "10"],
|
2023-04-15 14:15:15 +03:00
|
|
|
"cloud_provider": ["AWS", "GCP", "Azure", "None"],
|
2020-02-06 23:17:46 +03:00
|
|
|
"mail_service": [
|
2020-02-06 23:36:51 +03:00
|
|
|
"Mailgun",
|
2020-03-14 20:43:37 +03:00
|
|
|
"Amazon SES",
|
2020-02-06 23:36:51 +03:00
|
|
|
"Mailjet",
|
|
|
|
"Mandrill",
|
|
|
|
"Postmark",
|
|
|
|
"Sendgrid",
|
|
|
|
"SendinBlue",
|
|
|
|
"SparkPost",
|
2020-03-14 20:43:37 +03:00
|
|
|
"Other SMTP"
|
2020-02-06 23:17:46 +03:00
|
|
|
],
|
2020-03-24 22:40:14 +03:00
|
|
|
"use_async": "n",
|
2019-09-13 09:43:12 +03:00
|
|
|
"use_drf": "n",
|
2023-04-15 14:15:15 +03:00
|
|
|
"frontend_pipeline": ["None", "Django Compressor", "Gulp", "Webpack"],
|
2018-03-04 17:32:29 +03:00
|
|
|
"use_celery": "n",
|
|
|
|
"use_mailhog": "n",
|
2018-05-21 21:22:35 +03:00
|
|
|
"use_sentry": "n",
|
2018-05-21 21:22:53 +03:00
|
|
|
"use_whitenoise": "n",
|
2018-03-04 17:32:29 +03:00
|
|
|
"use_heroku": "n",
|
2023-07-28 15:03:47 +03:00
|
|
|
"ci_tool": ["None", "Travis", "Gitlab", "Github", "Drone"],
|
2018-05-05 13:47:25 +03:00
|
|
|
"keep_local_envs_in_vcs": "y",
|
|
|
|
"debug": "n"
|
2013-08-16 14:54:14 +04:00
|
|
|
}
|