Project was created to practice Django framework. It is still in progress and will be updated continously. Project was created based on Corey Shafer Django tutorial, his YT channel you can find here.
- OS: Windows 10
- Python Version: 3.7.3
First of all you have to create virtual env and install required Python libs (I assume that you have already installed Python and pip)
Run CMD and go to main app directory. Then run below commands:
python -m venv venv
venv\Scripts\activate
pip install -r requirements.txt
To run website server, first you have to activate venv by:
venv\Scripts\activate
Then go to kryspy_app dir and run:
python manage.py runserver
You will get website on your localhost addres.
Placeholder
Placeholder