-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
24 lines (24 loc) · 1.05 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"project_name": "Project name",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"project_short_description": "A short description of the Anyblok based project",
"python_package": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"blok_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"db_driver_name": ["postgresql", "mysql", "mssql"],
"db_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"furetui": ["no", "yes", "custom"],
"http_server": ["no", "pyramid"],
"furetui": ["no", "yes", "custom"],
"open_source_license": [
"Mozilla Public License Version 2.0",
"GNU General Public License v3",
"MIT license", "BSD license",
"ISC license",
"Apache Software License 2.0",
"Not open source"],
"version": "0.1.0",
"full_name": "Your name",
"email": "Your address email (eq. you@example.com)",
"github_username": "Your github username",
"_extensions": ["jinja2_time.TimeExtension"]
}