This repository is a simple Django Template Repository.
It includes Django + Django-Environs. This simple setup enables an easy way to configure settings dynamically. This template may grow over time, but for now it is intentionally simple.
To use this template, first create a repository of it from GitHub.
Next, create a .env
file that has: SECRET_KEY
, DEBUG
, and DATABASE_URL
defined.
Provided below is a sample:
# .env file
SECRET_KEY="MY_SECRET"
DEBUG=True
DATABASE_URL="sqlite:///./dev.db"