-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconfig.example.json
More file actions
36 lines (36 loc) · 940 Bytes
/
config.example.json
File metadata and controls
36 lines (36 loc) · 940 Bytes
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
{
"platform":{
"name": "<PLATFORM_NAME>",
"executor": "celery",
"include_hive": true,
"include_aws": true,
"include_examples": true
},
"aws": {
"access_key_id": "<ACCESS_KEY_ID>",
"secret_access_key": "<SECRET_ACCESS_KEY>"
},
"postgres" : {
"user": "airflow",
"password": "airflow",
"port": 5439
},
"airflow": {
"email": {
"email_address": "<AIRFLOW_EMAIL_ADDRESS>",
"password": "<EMAIL_PASSWORD>",
"smtp_host": "smtp.google.org",
"smtp_port": 587
},
"authentication": false,
"accounts":[
{
"firstname": "<FIRST_NAME>",
"lastname": "<LAST_NAME>",
"email": "<USER_EMAIL>",
"password": "<LOGIN_PASSWORD>",
"username": "<USERNAME>"
}
]
}
}