-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbaker.yaml
More file actions
41 lines (34 loc) · 1.02 KB
/
baker.yaml
File metadata and controls
41 lines (34 loc) · 1.02 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
schemaVersion: v1
questions:
project_name:
type: str
help: Please enter the name of your project
project_author:
type: str
help: "Please enter the author's name for {{project_name}}"
use_database:
type: bool
help: "Would you like to include database functionality with SQLModel?"
default: true
database_type:
type: str
help: "Which database would you like to use?"
choices:
- sqlite
- postgresql
default: sqlite
when: use_database
include_db_examples:
type: bool
help: "Would you like to include example CRUD operations for the database?"
default: true
when: use_database
use_logfire:
type: bool
help: "Would you like to include logfire for enhanced logging capabilities? (Logfire needs an authentication token, if you do you are not sure procceed with false)"
default: false
logfire_token:
type: str
help: "Logfire needs an authentication token. Please enter your Logfire token:"
default: ""
when: use_logfire