-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcookiecutter.json
18 lines (18 loc) · 963 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"app_name": "Example App",
"app_slug": "{{ cookiecutter.app_name|lower|replace(' ', '-') }}",
"app_description": "{{ cookiecutter.app_name }} is a Full Stack Python Web App",
"app_author": "{{ 'Ezequiel Leonardo Castaño'}}",
"app_year": "{% now 'utc', '%Y' %}",
"app_license": ["MIT", "Apache-2.0", "BSD-3-Clause", "Skip"],
"app_python_version": ["3.8", "3.7", "3.9"],
"app_dependency_manager": ["pip", "pipenv"],
"app_backend": ["flask"],
"app_database": ["NoSQL (Document)", "NoSQL (Column/OLAP)", "Object-Based", "NoSQL (Key-Value/Cache)", "SQL"],
"app_frontend": ["vue", "react", "angular"],
"": "]\nChoose one Web Server. \nWaitress is the production ready option for Windows users.\n[Please press enter to continue",
"app_webserver": ["waitress", "uwsgi", "debug"],
"app_port": 5000,
"_copy_without_render": ["*.js", "*.ts", "frontend*"],
"_extensions": ["jinja2_time.TimeExtension"]
}