Skip to content

Latest commit

 

History

History
50 lines (34 loc) · 991 Bytes

CONTRIBUTING.MD

File metadata and controls

50 lines (34 loc) · 991 Bytes

Contributing

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:

  1. Fork the repo

  2. Clone it on the local machine

  git clone https://github.com/andreax79/airflow-code-editor.git
  cd airflow-code-editor
  1. Create and activate virtualenv
  source ./scripts/activate.sh
  1. Make changes you need. Build npm package with:
  make npm-build
  1. You can start Airflow webserver or scheduler with these commands:
  make webserver
  make scheduler
  1. Run tests
  make test
  1. Commit and push changes
  git add .
  git commit
  git push
  1. Create pull request to the original repo