Simple Django app to help you manage your vegetation
- Create a virtual environment
python3 -m venv venv
- Activate the virtual environment
source venv/bin/activate
- Install the requirements
pip install -r requirements.txt
- Run the migrations
python manage.py migrate
- Run the server
python manage.py runserver
- Add email notifications (possibly using APScheduler)
- Add user authentication
- Add tests
- Add CI/CD
- Add Dockerfile
- Add Docker-compose
- Add Postgres support
- Add swagger documentation