-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsample_settings.yaml
50 lines (45 loc) · 1.49 KB
/
sample_settings.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
#RENAME ME TO SETTINGS.YAML
#For more information on how to use SAYN, please visit our documentation:
#https://173tech.github.io/sayn/
##############
#SETTINGS OVERVIEW
##############
#this file contains individual settings - those are not shared across the SAYN project users
#please see the documentation for more information on the settings.yaml file
#https://173tech.github.io/sayn/settings/settings_yaml/
##############
#DEFAULT PROFILE SECTION
##############
#this section sets the default profile that will be used when running SAYN
#the default profile must be one of the profiles set below
default_profile: dev
##############
#PROFILES SECTION
##############
#this section sets the various profiles that can be used for SAYN
#this example sets a dev and a prod profile. You can specify as many profiles as desired
#a profile consists of 2 parts, credentials and parameters
profiles:
dev:
credentials:
warehouse: test_db
parameters:
user_prefix: 'up_'
prod:
credentials:
warehouse: prod_db
parameters:
user_prefix: '' #no prefix for prod
##############
#CREDENTIALS SECTION
##############
#this section lists the details of all the credentials used by the SAYN project
#credentials can include both database connection and API connection details
#for the detail of supported databases and specific connection parameters, please refer to the SAYN documentation
credentials:
test_db:
type: sqlite
database: test.db
prod_db:
type: sqlite
database: prod.db