Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 686 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 686 Bytes

How To Use This Django Repository:

$ git clone https://github.com/VinCoD/The-Bloggers.git
$ cd learning_logs
$ virtualenv ll_env
$ source ll_env/bin/activate
$ pip install django
$ touch secret_settings.py

in the secret_settings.py file, add the following code:

SECRET_KEY = 'your_django_security key'
DEBUG = True
ALLOWED_HOSTS = []

Note:

  • Security Key can be found under settings.py of another django project, i can't share that here.
  • If you don't know how to find one:
  • create a new django project of your own, and in the settings.py you will find SECRET_KEY, copy the code and paste it under secret settings.py

Regards