Simple To-Do app with Django using TDD
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- Make sure you have pip installed on your machine.
- And make sure you are running python 3.6
A step by step series of examples that tell you have to get a development env running
- Install virtualenv (not mandatory)
pip install virtualenv
- Create a virtualenviroment
virtualenv env_name -p python3.6
- Open the folder created
cd env_name/ && source bin/activate
- after clone this project run
pip install requirements.txt
python manage.py makemigrations
python manage.py migrate
python manage.py create_superuser
python manage.py runserver
python manage.py test
- Django 1.11 - The web framework used
- pip - Package Management
This project is licensed under the MIT License - see the LICENSE.md file for details