-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcopier.yml
48 lines (39 loc) · 978 Bytes
/
copier.yml
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
project_name:
type: str
help: What's your project / repository name?
project_slug:
type: str
help: Directory name for the project
default: "{{ project_name.lower().replace(' ', '_') }}"
description:
type: str
help: A short description of the project
author_name:
type: str
help: Author full name
author_email:
type: str
help: Author email
default: "{{author_name.lower().replace(' ', '')}}@gmail.com"
project_license:
type: str
help: Your project LICENSE
default: MIT
choices:
- MIT
- BSD-3-Clause
- No license
postgres_user:
type: str
help: Postgres user name
default: postgres
postgres_password:
type: str
help: Postgres user password
postgres_database:
type: str
help: Postgres database name for your project
use_auth:
type: bool
help: Do you want to use authentication features (login, register, logout, profile, and JWT) ?
default: yes