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