-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.example
29 lines (23 loc) · 909 Bytes
/
env.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
# dev-only fernet key following a schema, has been generated through
# python -c "from cryptography.fernet import Fernet; print(Fernet.generate_key().decode())"
# this key is necessary to read and write Airflow variables, which are encrypted.
AIRFLOW__CORE__FERNET_KEY="U7sOUkZeQ6JGmwQoG6anMTdnl_nzy4f74IFkNmMeW50="
AIRFLOW__DATABASE__SQL_ALCHEMY_CONN="postgresql://postgres:password@localhost:5432/airflow"
# Environment variables for docker compose
#AIRFLOW_PORT_ON_DOCKER_HOST=8080
#POSTGRES_PORT_ON_DOCKER_HOST=5432
#MINIO_PORT_ON_DOCKER_HOST=9000
#MINIO_ADMIN_PORT_ON_DOCKER_HOST=9001
# Environment variables for DBT and load_dump
PGHOST=localhost
PGUSER=postgres
PGPASSWORD=password
PGDATABASE=pilotage
PGPORT=5432
PROD_PGDATABASE="db_de_prod"
PROD_PGHOST="the.host.com"
PROD_PGPASSWORD="pword"
PROD_PGPORT="5432"
PROD_PGUSER="user"
# Used on production for importing IAE records
HASH_SALT="abcd"