Make sure that you have already django installed. If you haven´t get it here: https://www.djangoproject.com/ Also make sure that you get the Python Version 3.5. If you haven´t get it here: https://www.python.org/downloads/ For an easier handling also get pip. If you haven´t get it here: https://pip.pypa.io/en/latest/installing/
How to start on Windows:
- Start an console and get into the directory where the project is.
- Install an virtual wrapper with: pip install virtualenvwrapper-win
- Start the django-enviroment with: mkvirtualenv tmp_ppsz_master
- Install django on this enviroment with: pip install django
- Get into the directory where manage.py is.
- Initialise with: python manage.py migrate
- Run the server with: python manage.py runserver
How to start on Linux:
- Get into the directory where the project is.
- Install django on this enviroment with: pip install django
- Initialise with: python3 manage.py migrate
- Run the server with: python3 manage.py runserver
After you have started the Server you can check your Browser on this site: http://127.0.0.1:8000/todo/