Skip to content

Instantly share code, notes, and snippets.

View avram-dames's full-sized avatar

Avram Dames avram-dames

  • Dames Mircea Avram PFA
  • Romania
  • 10:31 (UTC +03:00)
View GitHub Profile
@avram-dames
avram-dames / tutorial_dag.py
Last active July 30, 2017 19:26
minimal airflow dag for testing deployment
from airflow import DAG
from airflow.operators.bash_operator import BashOperator
from datetime import datetime, timedelta
dag = DAG(
'tutorial',
start_date=datetime.today() - timedelta(days=1),
schedule_interval=timedelta(days=1)
)
@avram-dames
avram-dames / Procfile
Created July 30, 2017 08:37
Heroku Procfile for initializing airflow's database
web: airflow initdb
@avram-dames
avram-dames / .gitignore
Created July 30, 2017 08:50
gitignore file for airflow tutorial project
.venv/
__init__.py
__pycache__/
@avram-dames
avram-dames / Procfile
Created July 30, 2017 09:10
Heroku Procfile to run airflow webserver
web: airflow webserver --port $PORT
@avram-dames
avram-dames / Procfile
Created July 30, 2017 10:31
Heroku Procfile to run airflow's webserver and scheduler at the same time
web: airflow webserver --port $PORT --daemon & airflow scheduler