You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
modules/apache-airflow/run.sh

16 lines
325 B
Bash

#!/usr/bin/env sh
BOLD='\033[0;1m'
PATH=$PATH:~/.local/bin
pip install --upgrade apache-airflow
filename=~/airflow/airflow.db
if ! [ -f $filename ] || ! [ -s $filename ]; then
airflow db init
fi
airflow webserver > ${LOG_PATH} 2>&1 &
airflow users create -u admin -p admin -r Admin -e admin@admin.com -f Coder -l User