mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-04-10 20:04:18 +03:00
Custom JSON options
This commit is contained in:
parent
8f249ab24d
commit
4e86bd6b31
|
@ -2,24 +2,24 @@
|
|||
"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",
|
||||
"author_name": "WebLabs",
|
||||
"domain_name": "example.com",
|
||||
"email": "{{ cookiecutter.author_name.lower() | trim() |replace(' ', '-') }}@{{ cookiecutter.domain_name.lower() | trim() }}",
|
||||
"version": "0.1.0",
|
||||
"open_source_license": [
|
||||
"Not open source",
|
||||
"MIT",
|
||||
"BSD",
|
||||
"GPLv3",
|
||||
"Apache Software License 2.0",
|
||||
"Not open source"
|
||||
"Apache Software License 2.0"
|
||||
],
|
||||
"username_type": ["username", "email"],
|
||||
"timezone": "UTC",
|
||||
"windows": "n",
|
||||
"editor": ["None", "PyCharm", "VS Code"],
|
||||
"use_docker": "n",
|
||||
"username_type": ["email", "username"],
|
||||
"timezone": "Europe/Belgrade",
|
||||
"windows": "y",
|
||||
"editor": ["PyCharm", "None", "VS Code"],
|
||||
"use_docker": "y",
|
||||
"postgresql_version": ["16", "15", "14", "13", "12"],
|
||||
"cloud_provider": ["AWS", "GCP", "Azure", "None"],
|
||||
"cloud_provider": ["Azure", "AWS", "GCP", "None"],
|
||||
"mail_service": [
|
||||
"Mailgun",
|
||||
"Amazon SES",
|
||||
|
@ -32,14 +32,14 @@
|
|||
"Other SMTP"
|
||||
],
|
||||
"use_async": "n",
|
||||
"use_drf": "n",
|
||||
"use_drf": "y",
|
||||
"frontend_pipeline": ["None", "Django Compressor", "Gulp", "Webpack"],
|
||||
"use_celery": "n",
|
||||
"use_mailpit": "n",
|
||||
"use_sentry": "n",
|
||||
"use_celery": "y",
|
||||
"use_mailpit": "y",
|
||||
"use_sentry": "y",
|
||||
"use_whitenoise": "n",
|
||||
"use_heroku": "n",
|
||||
"ci_tool": ["None", "Travis", "Gitlab", "Github", "Drone"],
|
||||
"ci_tool": ["Github", "None", "Travis", "Gitlab", "Drone"],
|
||||
"keep_local_envs_in_vcs": "y",
|
||||
"debug": "n"
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user