cookiecutter-django/cookiecutter.json

64 lines
1.3 KiB
JSON
Raw Normal View History

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