mirror of
https://github.com/Rushilwiz/tj2023.git
synced 2025-04-09 14:50:17 -04:00
15 lines
328 B
Python
15 lines
328 B
Python
# coding=utf-8
|
|
|
|
# Add your secrets to this list and run manage.py to set their values.
|
|
# Use them in settings.py like this:
|
|
# from secrets import secrets
|
|
# SECRET_KEY = secrets.SECRET_KEY
|
|
|
|
SECRET_KEYS = [
|
|
# start with your Django secret key like this:
|
|
'DEBUG',
|
|
"SECRET_KEY",
|
|
"NOTION_URL",
|
|
"NOTION_COOKIE",
|
|
]
|