This project contains the back-end for the project course.
python -m venv ./.venv/
source ./.venv/bin/activate
docker build -t dashboard-app .
docker run -d -p 8000:8000 dashboard-app
In order to contribute to the project:
- First setup git pre-commit hook for analysing python code with pylint on every commit.
chmod +x ./precommit-hook-setup
./precommit-hook-setup
- Every commit to the codebase must pass pylint test successfully. Code must be rated 8 or greater.