#メモ記事です。
これだけで実行可能。
passwardの部分だけは書き換えてね。
ローカル環境以外で立ち上げる人は、セキュリティ設定に気を付けましょう。
環境:ubuntu
export AIRFLOW_HOME=~/airflow
pip3 install apache-airflow
pip3 install typing_extensions
# initialize the database
airflow db init
airflow users create --username Admin --firstname FIRST_NAME --lastname LAST_NAME -p ぱすわーーーーーど --role Admin --email admin@example.org
# start the web server, default port is 8080
airflow webserver -p 8080
# start the scheduler. I recommend opening up a separate terminal #window for this step
airflow scheduler
# visit localhost:8080 in the browser and enable the example dag in the home page
ref
立ち上げ:https://medium.com/@jacksonbull1987/how-to-install-apache-airflow-6b8a2ae60050
サンプル:https://dev.classmethod.jp/articles/airflow-gs-arch-learn/