-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.yml.example
31 lines (31 loc) · 1.1 KB
/
config.yml.example
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
viaa:
logging:
level: DEBUG
app:
teamleader:
auth_uri: !ENV ${TEAMLEADER_AUTH_URI}
api_uri: !ENV ${TEAMLEADER_API_URI}
client_id: !ENV ${TEAMLEADER_CLIENT_ID}
client_secret: !ENV ${TEAMLEADER_CLIENT_SECRET}
redirect_uri: !ENV ${TEAMLEADER_REDIRECT_URI}
secret_code_state: !ENV ${TEAMLEADER_SECRET_CODE_STATE}
code: !ENV ${TEAMLEADER_CODE}
auth_token: !ENV ${TEAMLEADER_AUTH_TOKEN}
refresh_token: !ENV ${TEAMLEADER_REFRESH_TOKEN}
postgresql_teamleader:
database: !ENV ${POSTGRESQL_DATABASE}
host: !ENV ${POSTGRESQL_HOST}
port: !ENV ${POSTGRESQL_PORT}
password: !ENV ${POSTGRESQL_PASSWORD}
user: !ENV ${POSTGRESQL_USER}
sslmode: !ENV ${POSTGRESQL_SSLMODE}
table_names:
oauth_table: !ENV ${OAUTH_TABLE}
companies_table: !ENV ${COMPANIES_TABLE}
contacts_table: !ENV ${CONTACTS_TABLE}
departments_table: !ENV ${DEPARTMENTS_TABLE}
events_table: !ENV ${EVENTS_TABLE}
invoices_table: !ENV ${INVOICES_TABLE}
projects_table: !ENV ${PROJECTS_TABLE}
users_table: !ENV ${USERS_TABLE}
custom_fields_table: !ENV ${CUSTOM_FIELDS_TABLE}