git clone https://github.com/Open-Telecoms-Data/cove-ofds.git openfibre-cove-ofds
cd openfibre-cove-ofds
virtualenv .ve --python=/usr/bin/python3.9
source .ve/bin/activate
pip install -r requirements_dev.txt
python manage.py migrate
python manage.py compilemessages
python manage.py runserver
You may need to pass 0.0.0.0:8000
to runserver
in the last step, depending on your development environment.
Note: requires gettext
to be installed. This should come by default with Ubuntu, but just in case:
apt-get update && apt-get install gettext
There are currently no translations.
cd cove_ofds/sass && ./build_ofds.sh
Run
isort cove_project/ cove_ofds/ libcoveweb2/
black cove_project/ cove_ofds/ libcoveweb2/
flake8 cove_project/ cove_ofds/ libcoveweb2/
DJANGO_SETTINGS_MODULE=cove_project.settings python -m pytest cove_ofds/
Add a new requirements to requirements.in
or requirements_dev.in
depending on whether it is just a development requirement or not.
Then, run pip-compile requirements.in && pip-compile requirements_dev.in
this will populate requirements.txt
and requirements_dev.txt
with pinned versions of the new requirement and its dependencies.
pip-compile --upgrade requirements.in && pip-compile --upgrade requirements_dev.in
will update all pinned requirements to the latest version. Generally we don't want to do this at the same time as adding a new dependency, to make testing any problems easier.
Docker is used in production, so sometimes you may want to run locally with Docker to debug issues:
docker compose -f docker-compose.dev.yml down # (if running)
docker compose -f docker-compose.dev.yml build --no-cache
docker compose -f docker-compose.dev.yml up # (to restart)