dheerajturaga commented on issue #49330: URL: https://github.com/apache/airflow/issues/49330#issuecomment-2810639992
@bugraoz93 , We dont use docker at all (and have no access to it either). We use virtualenvs. As mentioned, the setup here is pretty light weight where `airflow` cli comes from a local venv where airflow is installed. We just have these three env variables that go with it. ``` AIRFLOW_HOME = '<dags_repo>/run' AIRFLOW__CORE__DAGS_FOLDER = <dags_repo> AIRFLOW__CORE__LOAD_EXAMPLES = false ``` Being able to list dags and list import errors without having any services running is a valid and wide spread usecase. This is how folks sanity check their dags and maybe even run `airflow standalone` for a quick dry run before they deploy to the central airflow service -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
