https://github.com/zkan/hello-astronomer
Hello, Astronomer! - The Enterprise Framework for Apache Airflow
https://github.com/zkan/hello-astronomer
airflow astronomer
Last synced: about 1 month ago
JSON representation
Hello, Astronomer! - The Enterprise Framework for Apache Airflow
- Host: GitHub
- URL: https://github.com/zkan/hello-astronomer
- Owner: zkan
- License: apache-2.0
- Created: 2021-04-14T05:06:52.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-14T10:22:09.000Z (over 4 years ago)
- Last Synced: 2025-07-14T00:09:40.569Z (3 months ago)
- Topics: airflow, astronomer
- Language: Python
- Homepage:
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hello, Astronomer! - The Enterprise Framework for Apache Airflow
## Installing Astronomer CLI with Homebrew
```sh
brew install astronomer/tap/astro
```## Initializing Airflow Project
```sh
mkdir astro && cd astro
astro dev init
```## Starting Airflow on Local
```sh
cd astro
astro dev start
```If you get an error similar to this below:
```
buildkit not supported by daemon
Error: command 'docker build -t astro_e24539/airflow:latest failed: failed to execute cmd: exit status 1
```Try this:
```sh
cd astro
DOCKER_BUILDKIT=0 astro dev start
```Reference: [‘buildkit not supported by daemon Error: command ‘docker build -t airflow-astro_bcb837/airflow:latest failed: failed to execute cmd: exit status 1](https://forum.astronomer.io/t/buildkit-not-supported-by-daemon-error-command-docker-build-t-airflow-astro-bcb837-airflow-latest-failed-failed-to-execute-cmd-exit-status-1/857)