This repo is part of the devops-experiments. I'll build a simple, tested and secure todo list application to be used in my devops experiments :)
- Make sure you have python 3.7 installed
- Install virtualenvwrapper
- Create a virtual env with
mkvirtualenv django-todo-list
- Install requirements with
pip install -r requirements
- Run migrations with
python manage.py migrate
- Run server with
python manage.py runserver
- Run the tests with
python manage.py test
;