-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopier.yaml
50 lines (43 loc) · 891 Bytes
/
copier.yaml
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
50
# https://copier.readthedocs.io/en/stable/configuring/#copier-yaml
_subdirectory: src
_templates_suffix: .jinja
_commit: v1.0.0
project_name:
type: str
help: What is your project name?
default: Universe
project_license:
type: str
help: What licence do you want to use?
default: MIT
choices:
- MIT
- APACHE v2.0
- GPL v3.0
framework_type:
type: str
help: What framework do you want to use?
default: fastapi
choices:
- fastapi
- aiohttp
- aiogram
- flask
database_type:
type: str
help: What database do you want to use?
default: postgresql
choices:
- postgresql
- mysql
- sqlite
ci:
type: str
help: What CI do you want to use?
default: github
choices:
- github
- gitlab
_tasks:
- git init
- poetry install