mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-10 19:57:09 +03:00
73137e1764
* modifying cookiecutter.json with new config * updated docker image and its local settings * replacing use_mailhog conditions * replacing use_mailhog condition in docs * Updating docs with mailpit
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"project_name": "My Awesome Project",
|
|
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
|
|
"description": "Behold My Awesome Project!",
|
|
"author_name": "Daniel Roy Greenfeld",
|
|
"domain_name": "example.com",
|
|
"email": "{{ cookiecutter.author_name.lower() | trim() |replace(' ', '-') }}@{{ cookiecutter.domain_name.lower() | trim() }}",
|
|
"version": "0.1.0",
|
|
"open_source_license": [
|
|
"MIT",
|
|
"BSD",
|
|
"GPLv3",
|
|
"Apache Software License 2.0",
|
|
"Not open source"
|
|
],
|
|
"username_type": ["username", "email"],
|
|
"timezone": "UTC",
|
|
"windows": "n",
|
|
"editor": ["None", "PyCharm", "VS Code"],
|
|
"use_docker": "n",
|
|
"postgresql_version": ["15", "14", "13", "12", "11", "10"],
|
|
"cloud_provider": ["AWS", "GCP", "Azure", "None"],
|
|
"mail_service": [
|
|
"Mailgun",
|
|
"Amazon SES",
|
|
"Mailjet",
|
|
"Mandrill",
|
|
"Postmark",
|
|
"Sendgrid",
|
|
"SendinBlue",
|
|
"SparkPost",
|
|
"Other SMTP"
|
|
],
|
|
"use_async": "n",
|
|
"use_drf": "n",
|
|
"frontend_pipeline": ["None", "Django Compressor", "Gulp", "Webpack"],
|
|
"use_celery": "n",
|
|
"use_mailpit": "n",
|
|
"use_sentry": "n",
|
|
"use_whitenoise": "n",
|
|
"use_heroku": "n",
|
|
"ci_tool": ["None", "Travis", "Gitlab", "Github", "Drone"],
|
|
"keep_local_envs_in_vcs": "y",
|
|
"debug": "n"
|
|
}
|