mirror of
https://github.com/Fluffy-Bean/GameExpo23.git
synced 2025-05-21 10:34:52 +00:00
Add enviroment variables
This commit is contained in:
parent
dbd6a81c78
commit
fda3fcc28c
5 changed files with 17 additions and 9 deletions
|
@ -1,4 +1,7 @@
|
|||
SECRET_KEY = 'dev'
|
||||
import os
|
||||
|
||||
SECRET_KEY = os.getenv('SECRET_KEY')
|
||||
BEARER_TOKEN = os.getenv('BEARER_TOKEN')
|
||||
|
||||
SQLALCHEMY_DATABASE_URI = 'sqlite:///db.sqlite'
|
||||
SQLALCHEMY_TRACK_MODIFICATIONS = False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue