cookiecutter-django/cookiecutter.json

64 lines
1.3 KiB
JSON
Raw Normal View History

2013-08-15 17:59:11 +00:00
{
2018-03-04 14:32:29 +00:00
"project_name": "My Awesome Project",
"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",
2018-05-13 10:51:01 +00:00
"email": "{{ cookiecutter.author_name.lower()|replace(' ', '-') }}@example.com",
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"
],
"timezone": "UTC",
"windows": "n",
"use_pycharm": "n",
"use_docker": "n",
"postgresql_version": [
2020-07-12 01:15:17 +00:00
"12.3",
"11.8",
"10.8",
2018-03-04 14:32:29 +00:00
"9.6",
2020-07-12 01:15:17 +00:00
"9.5"
2018-03-04 14:32:29 +00:00
],
"js_task_runner": [
"None",
2018-05-13 10:51:01 +00:00
"Gulp"
2018-03-04 14:32:29 +00:00
],
2019-04-02 06:13:31 +00:00
"cloud_provider": [
"AWS",
"GCP",
"None"
2019-04-02 06:13:31 +00:00
],
"mail_service": [
"Mailgun",
"Amazon SES",
"Mailjet",
"Mandrill",
"Postmark",
"Sendgrid",
"SendinBlue",
"SparkPost",
"Other SMTP"
],
"use_async": "n",
2019-09-13 06:43:12 +00:00
"use_drf": "n",
2018-03-04 14:32:29 +00:00
"custom_bootstrap_compilation": "n",
"use_compressor": "n",
"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",
2019-12-06 07:55:00 +00:00
"ci_tool": [
"None",
"Travis",
"Gitlab"
],
2018-05-05 10:47:25 +00:00
"keep_local_envs_in_vcs": "y",
"debug": "n"
2013-08-16 10:54:14 +00:00
}