mirror of
https://github.com/Rushilwiz/launchx.git
synced 2025-04-05 12:40:18 -04:00
13 lines
288 B
Python
13 lines
288 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:
|
|
"SECRET_KEY",
|
|
"DEBUG"
|
|
]
|