Contributions to Caluma Service are very welcome! Best have a look at the open issues and open a GitHub pull request. See instructions below how to setup development environment. Before writing any code, best discuss your proposed change in a GitHub issue to see if the proposed change makes sense for the project.
To work on Caluma you first need to clone
git clone https://github.com/projectcaluma/caluma.git
cd caluma
Once it is cloned you can easily open a shell in the docker container to open an development environment.
# needed for permission handling
# only needs to be run once
echo UID=$UID > .env
# open shell
docker-compose run --rm caluma bash
Once you have shelled in docker container as described above you can use common python tooling for formatting, linting, testing etc.
# linting
flake8
# format code
black .
# running tests
pytest
# create migrations
./manage.py makemigrations
# install debugger or other temporary dependencies
pip install --user pdbpp
Writing of code can still happen outside the docker container of course.
We run pytests in parallel with xdist by default. pytest-django will create a database per xdist-worker.
To disable xdist completely run:
pytest -n 0
This is especially important when you're updating snapshot tests, because this will fail with multiple workers:
pytest --snapshot-update -n 0
In case you're adding new requirements you simply need to build the docker container again for those to be installed and re-open shell.
docker-compose build --pull
Pre commit hooks is an additional option instead of executing checks in your editor of choice.
First create a virtualenv with the tool of your choice before running below commands:
pip install pre-commit
pip install -r requirements-all.txt -U
pre-commit install --hook=pre-commit
pre-commit install --hook=commit-msg
This will activate commit hooks to validate your code as well as your commit messages.
Docker is the way to run and test caluma, but you can install the requirements for your IDE/editor using pipenv:
pipenv install --python 3.7 -r requirements.txt
pipenv install -d -r requirements-dev.txt
You can also run tests without the caluma-container:
echo UID=$(id -u) > .env
echo ENV=dev >> .env
docker-compose up -d db
pipenv install --python 3.7 -r requirements.txt
pipenv install -d -r requirements-dev.txt
pipenv shell
pytest
or you can use the setup.py command:
python3 setup.py pipenv
You can add any configuration supported by the caluma-container to the .env file.