I’m setting up airflow on windows 10 locally using WSL ubuntu. How can I set the default DAG path to /airflow/dags/
Here is my airflow.cfg file :
Here is the location from where it is picking up DAGs : (example_dag location)
/usr/local/lib/python3.8/dist-packages/airflow/example_dags/example_bash_operator.py
I have executed the export AIRFLOW_HOME=~/airflow/dags command.
Also, I have added above to ~/.bashrc and executed ‘source ~/.bashrc’ , but no luck.
Please help!