Skip to content

Instantly share code, notes, and snippets.

@poteznyKrolik
Created April 12, 2021 20:34
Show Gist options
  • Select an option

  • Save poteznyKrolik/df0127d10afc34ba2f2ceb7b897ba08f to your computer and use it in GitHub Desktop.

Select an option

Save poteznyKrolik/df0127d10afc34ba2f2ceb7b897ba08f to your computer and use it in GitHub Desktop.
airflow_db_conn
import os, sys
airflow_core_sqlalchemy_conn = f"postgresql+psycopg2://{os.environ.get('AIRFLOW_DB_USER')}:{os.environ.get('AIRFLOW_DB_PASS')}@{os.environ.get('AIRFLOW_DB_HOST')}:{os.environ.get('AIRFLOW_DB_PORT')}/airflow"
os.environ['AIRFLOW__CORE__SQL_ALCHEMY_CONN'] = airflow_core_sqlalchemy_conn
print(airflow_core_sqlalchemy_conn)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment