The repo contains the minimal Airflow infra + Spring project project example. The repo is useful for demo purposes.
- Init Airflow db:
docker compose up airflow-init
. - Start Airflow:
docker compose up -d
. It will take a few minutes until it's ready. - Run the Spring directly project on your machine (useful for experimenting/making quick code changes):
cd ./java/spring-petclinic
./mvnw spring-boot:run
. Now Spring Boot application is running on port8081
.
- Log in Airflow UI:
localhost:8080
. Username and password areairflow
. - Find
pet_clinic_flow_simple
ortenant_{tenant_id}_daily_workflow
DAGs and run them manually if necessary.