Skip to content

VinCoD/railway_learning_log

Repository files navigation

How To Use This Django Repository:

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

in the secret_settings folder, 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