-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yml
More file actions
49 lines (34 loc) · 1.53 KB
/
copier.yml
File metadata and controls
49 lines (34 loc) · 1.53 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
39
40
41
42
43
44
45
46
47
48
49
_jinja_extensions:
- copier_templates_extensions.TemplateExtensionLoader
- _extensions/get_project_data.py:ContextUpdater
_exclude:
- copier.yml
- README.md
- .git
_tasks:
- "{{ _copier_python }} _extensions/update_backend_pyproject.py"
- "{{ _copier_python }} _extensions/update_backend_makefile.py"
- "{{ _copier_python }} _extensions/update_backend_dockerfile.py"
- "{{ _copier_python }} _extensions/update_frontend_makefile.py"
- "{{ _copier_python }} _extensions/modify_instance_yaml.py"
- "{{ _copier_python }} _extensions/remove_devops_folder.py"
- "{{ _copier_python }} _extensions/update_caddyfile.py"
- "{{ _copier_python }} _extensions/set_initial_version.py"
- rm -rf _extensions
_message_before_copy: |
Thanks for generating a project using our template.
You'll be asked a series of questions whose answers will be used to
generate a tailored project for you.
_message_after_copy: |
✨ Please check the modified files and run `git commit` to save them. ✨
You will need to run the following command to add the following files to `git`:
git add .gitlab-ci.yml .release-it.json backend/zope.ini backend/instance.yaml backend/Makefile backend/Dockerfile frontend/Makefile deploy
And the following command to remove the devops folder:
git rm -r --cached devops
✨✨✨✨ Well done! ✨✨✨✨
domain:
type: str
help: Enter the domain where this site will be published
varnish:
type: bool
help: Should we add a docker container with Varnish configuration?