cookiecutter-django/cookiecutter.json
2024-05-13 18:54:34 +00:00

87 lines
3.0 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": [
"Not open source",
"MIT License",
"BSD 3-Clause \"New\" or \"Revised\" License",
"GNU General Public License v3.0",
"Apache License 2.0",
"\"Do What The F*ck You Want To Public License\"",
"Academic Free License v3.0",
"Artistic License 2.0",
"BSD 2-Clause \"Simplified\" License",
"BSD 3-Clause Clear License",
"BSD 4-Clause \"Original\" or \"Old\" License",
"BSD Zero Clause License",
"Boost Software License 1.0",
"CERN Open Hardware Licence Version 2 - Permissive",
"CERN Open Hardware Licence Version 2 - Strongly Reciprocal",
"CERN Open Hardware Licence Version 2 - Weakly Reciprocal",
"CeCILL Free Software License Agreement v2.1",
"Creative Commons Attribution 4.0 International",
"Creative Commons Attribution Share Alike 4.0 International",
"Creative Commons Zero v1.0 Universal",
"Eclipse Public License 1.0",
"Eclipse Public License 2.0",
"Educational Community License v2.0",
"European Union Public License 1.1",
"European Union Public License 1.2",
"GNU Affero General Public License v3.0",
"GNU Free Documentation License v1.3",
"GNU General Public License v2.0",
"GNU Lesser General Public License v2.1",
"GNU Lesser General Public License v3.0",
"ISC License",
"LaTeX Project Public License v1.3c",
"MIT No Attribution",
"Microsoft Public License",
"Microsoft Reciprocal License",
"Mozilla Public License 2.0",
"Mulan Permissive Software License, Version 2",
"Open Data Commons Open Database License v1.0",
"Open Software License 3.0",
"PostgreSQL License",
"SIL Open Font License 1.1",
"The Unlicense",
"Universal Permissive License v1.0",
"University of Illinois/NCSA Open Source License",
"Vim License",
"zlib License"
],
"username_type": ["username", "email"],
"timezone": "UTC",
"windows": "n",
"editor": ["None", "PyCharm", "VS Code"],
"use_docker": "n",
"postgresql_version": ["16", "15", "14", "13", "12"],
"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"
}