Fix Env name

This commit is contained in:
Michał Gdula 2023-05-04 17:45:28 +03:00
parent 5248ae0123
commit 30988f6ade
4 changed files with 9 additions and 4 deletions

View file

@ -4,7 +4,7 @@ import os
def env(key):
return os.getenv(key)
SECRET_KEY = env('SECRET_KEY')
SECRET_KEY = env('FLASK_KEY')
BEARER_TOKEN = env('BEARER_TOKEN')
user = env('DB_USER')