forked from inveniosoftware/cookiecutter-invenio-instance
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
18 lines (18 loc) · 927 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"project_name": "My site",
"project_shortname": "{{ cookiecutter.project_name | lower | replace(' ', '-') }}",
"project_site": "{{ cookiecutter.project_shortname }}.com",
"package_name": "{{ cookiecutter.project_shortname | replace('-', '_') }}",
"github_repo": "{{ cookiecutter.project_shortname }}/{{ cookiecutter.project_shortname }}",
"description": "Invenio digital library framework.",
"author_name": "CERN",
"author_email": "info@{{ cookiecutter.project_site }}",
"year": "{% now 'local', '%Y' %}",
"copyright_holder": "{{ cookiecutter.author_name }}",
"transifex_project": "{{ cookiecutter.project_shortname }}",
"database": ["postgresql", "mysql", "sqlite"],
"elasticsearch": ["7", "6"],
"datamodel": ["Custom", "None"],
"datamodel_extension_class": "{{ cookiecutter.project_name | replace('-', '') | replace(' ', '') }}",
"datamodel_pid_name": "id"
}