Web application that allows users to track things like their water intake, diet, and exercise. Users have the option to set up alerts and reminders for things like drinking or working out and can analyse their habits over time.
python3.6 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
- start developing
- run
deactivate
when finished
- Install to your python
pip install virtualenv
- Setup environment folder
virtualenv venv
- Start virtual environment
source venv/Scripts/activate
pip install -r requirements.txt
- start developing
- run
deactivate
when finished
pip install (new package)
pip freeze > requirements.txt
- everyone else rerun
pip install -r requirements.txt
In the virtual environment: python manage.py runserver
In the virtual environment: python manage.py test
In the virtual environment: coverage run --source='.' manage.py test
coverage report