Blog application created as a part of Django Girls Tutorial. Uses SQLite as database.
This is where I began learning Django. If you're looking forward to learn this powerful framework, this tutorial is perhaps the go-to place.
-
Install the required packages. You'll ideally want to do this in a virtual environment.
pip install -r requirements.txt
-
Create a '.env' file and store a random strong 'SECRET KEY'
SECRET_KEY='YOUR_SECRET_KEY_HERE'
-
Run the server
python manage.py runserver