https://github.com/remarkablemark/airflow-demo
☁️ Airflow demo
https://github.com/remarkablemark/airflow-demo
airflow python
Last synced: 2 months ago
JSON representation
☁️ Airflow demo
- Host: GitHub
- URL: https://github.com/remarkablemark/airflow-demo
- Owner: remarkablemark
- License: mit
- Created: 2022-07-10T00:54:56.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2024-11-08T20:18:08.000Z (7 months ago)
- Last Synced: 2025-04-11T05:15:06.903Z (2 months ago)
- Topics: airflow, python
- Homepage:
- Size: 33.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# airflow-demo
[Running Airflow locally.](https://airflow.apache.org/docs/apache-airflow/stable/start/local.html)
## Install
Install from requirements:
```sh
pip install -r requirements.txt
```## Setup
Initialize the database, make a user, and start all components:
```sh
airflow standalone
```## Run
Run an all-in-one copy of Airflow:
```sh
airflow standalone
```Or run Airflow scheduler and webserver:
```sh
airflow scheduler & airflow webserver
```Kill Airflow processes that are running in the background:
```sh
kill -9 $(ps aux | grep airflow | grep -v "grep" | awk -F ' ' '{print $2}')
```## Login
Login credentials:
| username | password |
| --- | --- |
| admin | `cat ~/airflow/standalone_admin_password.txt` |