If you want to add an issue or pull request, please ensure that the existing issues don't already cover your question or contribution.
To get started contributing code to the airflow-code-editor
project:
-
Fork the repo
-
Clone it on the local machine
git clone https://github.com/andreax79/airflow-code-editor.git
cd airflow-code-editor
- Create and activate virtualenv
source ./scripts/activate.sh
- Make changes you need. Build npm package with:
make npm-build
- You can start Airflow webserver or scheduler with these commands:
make webserver
make scheduler
- Run tests
make test
- Commit and push changes
git add .
git commit
git push
- Create pull request to the original repo