-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcopier.yml
More file actions
38 lines (37 loc) · 1.16 KB
/
copier.yml
File metadata and controls
38 lines (37 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
project_name:
placeholder: "My New Project"
help: A human-readable name for the project.
project_slug:
default: "{{ project_name|lower|replace(' ', '-')|regex_replace('[^a-z0-9\\-]', '') }}"
help: A dash-delimited project identifier.
python_package_name:
default: "{{ project_slug|replace('-', '_') }}"
help: An underscore-delimited Python package identifier.
core_app_name:
default: "core"
help: |
A Python module name, used for the initial local Django app within this project. Keep the default, unless you know you will be creating multiple apps.
site_domain:
default: "www.{{ project_slug }}.test"
help: The fully-qualified domain name of the target production deployment.
include_example_code:
type: bool
help: Include (or exclude) example code for an "Image" management capability.
default: false
use_asgi:
type: bool
help: Use ASGI instead of WSGI for the web server.
default: false
_answers_file: .copier-answers.resonant.yml
_subdirectory: resonant-template
_exclude:
- ".copier-answers.resonant-meta.yml"
# Default values
- "copier.yaml"
- "copier.yml"
- "~*"
- "*.py[co]"
- "__pycache__"
- ".git"
- ".DS_Store"
- ".svn"