Commit 754b5de5 authored by Javi Ng's avatar Javi Ng

updated README.txt

parent 19501005
File added
John Aidan Vincent Ng John Aidan Vincent Ng
214221 214221
CSCI40-C CSCI40-C
Lab 01: Song Library Lab 02: Song Library v2
February 13, 2023 February 20, 2023
I am Javi Ng and this lab was completed by me truthfully. I am Javi Ng and this lab was completed by me truthfully.
<sgd> John Aidan Vincent Martinez Ng, 02/13/2023 <sgd> John Aidan Vincent Martinez Ng, 02/20/2023
\ No newline at end of file \ No newline at end of file
No preview for this file type
SECRET_KEY = "django-insecure--s*^ukg&imwq7bq%$ea4w4!#v&11@5@y*4njh(nr($17(oml8!"
\ No newline at end of file
...@@ -11,6 +11,11 @@ https://docs.djangoproject.com/en/3.2/ref/settings/ ...@@ -11,6 +11,11 @@ https://docs.djangoproject.com/en/3.2/ref/settings/
""" """
from pathlib import Path from pathlib import Path
from dotenv import load_dotenv
import os
# loading env file
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
...@@ -20,7 +25,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent ...@@ -20,7 +25,7 @@ BASE_DIR = Path(__file__).resolve().parent.parent
# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ # See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret! # SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = 'django-insecure--s*^ukg&imwq7bq%$ea4w4!#v&11@5@y*4njh(nr($17(oml8!' SECRET_KEY = "django-insecure--s*^ukg&imwq7bq%$ea4w4!#v&11@5@y*4njh(nr($17(oml8!"
# SECURITY WARNING: don't run with debug turned on in production! # SECURITY WARNING: don't run with debug turned on in production!
DEBUG = True DEBUG = True
......
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