Service relay for sensors to influxdb
To set everything up, from this directory:
- Create a new virtual environment with
python -m venv .venv - Activate the virtual environment with
source .venv/bin/activate - Install the requirements with
pip install -r requirements_dev.txt - Install the package with
pip install -e . - Install the git pre-commit hook with
pre-commit install - Launch the backend by following the instructions from ./docker/sensorflux-backend/README.md
- The primary development stream is on the main branch
- Development takes place on
featureorfixbranches - Naming convention for branches is
feature/name_of_branchandfix/underscore_between_words - You can manually test all the files with pre-commit using the command
pre-commit run --all-files(remove the flag to only test staged files)