Skip to content

Latest commit

 

History

History
84 lines (57 loc) · 2.1 KB

CONTRIBUTING.md

File metadata and controls

84 lines (57 loc) · 2.1 KB

Contribute to mquery

How to start?

Great, so you want to join the development!

First, set up a development environment. Since you're going to write new code, use the docker-compose.dev.yml method.

If everything went right, the system should be accessible at http://localhost:80.

Development workflow

We use a standard github fork workflow.

  1. Fork the repository.

  2. Create a new branch. The name does not matter, but the recommended format is feature/xxx or fix/yyy.

  3. Work on your changes!

  4. If possible, add a test or two to the src/tests/ directory. You can run them with:

$ docker build -t mquery_tests -f ./src/tests/Dockerfile .
$ docker run mquery_tests
  1. We run many code formatters and linters on the code to ensure expected code quality. Your code will be checked automatically when you submit your pull request, but you can also run the checks locally to speed-up review:
  • Important: we use black for Python:
$ pip3 install black==22.3.0
$ black src/
  • Important: we use prettier for Javascript/React:
$ npm install -g [email protected]
$ prettier --write src/mqueryfront/
  • Verify that there are no type errors with mypy:
$ pip install mypy==0.790
$ mypy src
  • Find other style issues with flake8:
$ pip install flake8==3.7.9
$ flake8 src

(Lifehack: you can also plug them into your editor as on-save action).

  1. When you feel like you're done, commit the files:
$ git add -A
$ git status  # check if included files match your expectations
$ git diff --cached  # check the diff for forgotten debug prints etc
$ git commit  # commit the changes (don't forget to add a commit message)
  1. Push changes to your fork:
$ git push origin [your_branch_name]
  1. Create a pull request with your changes from the GitHub interface and wait for review.

That's it! Thank you very much, we appreciate you help.