Commit 878474b9 authored by Brendan Fausto's avatar Brendan Fausto

.env file created

parent 60a81012
SECRET_KEY = 'django-insecure-9doygmz7r7a0kwe@csh50kn(2_j1_&g)x-c+a!-d)ubas8f3rz'
\ No newline at end of file
...@@ -9,8 +9,14 @@ https://docs.djangoproject.com/en/4.1/topics/settings/ ...@@ -9,8 +9,14 @@ https://docs.djangoproject.com/en/4.1/topics/settings/
For the full list of settings and their values, see For the full list of settings and their values, see
https://docs.djangoproject.com/en/4.1/ref/settings/ https://docs.djangoproject.com/en/4.1/ref/settings/
""" """
import os
from pathlib import Path from pathlib import Path
from dotenv import load_dotenv
load_dotenv()
# Build paths inside the project like this: BASE_DIR / 'subdir'. # Build paths inside the project like this: BASE_DIR / 'subdir'.
BASE_DIR = Path(__file__).resolve().parent.parent BASE_DIR = Path(__file__).resolve().parent.parent
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment