From b2f40e4dd2212824d9d78a68997c45eb85d409ec Mon Sep 17 00:00:00 2001 From: Dmitry Dementev Date: Sat, 18 Oct 2025 23:54:52 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9F=D1=80=D0=B8=D0=BC=D0=B5=D1=80=20=D0=BA?= =?UTF-8?q?=D0=BE=D0=BD=D1=84=D0=B8=D0=B3=D1=83=D1=80=D0=B0=D1=86=D0=B8?= =?UTF-8?q?=D0=B8=20=D0=BB=D0=BE=D0=BA=D0=B0=D0=BB=D1=8C=D0=BD=D1=8B=D1=85?= =?UTF-8?q?=20=D0=BF=D0=B5=D1=80=D0=B5=D0=BC=D0=B5=D0=BD=D0=BD=D1=8B=D1=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 21 +++++++++++++++++++++ .gitignore | 1 - 2 files changed, 21 insertions(+), 1 deletion(-) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..22959ab --- /dev/null +++ b/.env.example @@ -0,0 +1,21 @@ +# Airflow Configuration +AIRFLOW_USER=admin +AIRFLOW_PASSWORD=admin + +# PostgreSQL (Airflow metadata) +PG_USER=airflow +PG_PASSWORD=airflow +PG_DB=airflow + +# Greenplum Configuration +GP_USER=gpadmin +GP_PASSWORD=gpadmin +GP_DB=gpadmin +GP_HOST=greenplum +GP_PORT=5432 +GP_CONN_ID=greenplum_conn +GP_USE_AIRFLOW_CONN=true + +# CSV Pipeline +CSV_DIR=/opt/airflow/data +CSV_ROWS=1000 diff --git a/.gitignore b/.gitignore index b204357..b34bbb2 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,6 @@ # Do not commit secrets .env -.env.* __pycache__/ */__pycache__/ *.pyc