This is a Django project implementing the westnetz order form.
For local development, first create a virtualenv:
python -m venv venv
Afterwards, setup git-flow and install all dependencies using:
make develop
For development, use django runserver to run the application locally:
./manage.py runserver
This project uses git-flow. To contribute changes, create a feature branch
based on develop
and work on your changes there.
To test your changes locally, you can run:
make check
Once you are finished, publish the branch and open a pull-request for review.