fix: force overriding environment variables from .env files (#89)

This commit is contained in:
James Hush
2024-03-27 23:38:55 +08:00
committed by GitHub
parent 24fb7c5a05
commit a3293c6d7a
18 changed files with 18 additions and 18 deletions

View File

@@ -9,7 +9,7 @@ from flask_cors import CORS
from auth import get_meeting_token
from dotenv import load_dotenv
load_dotenv()
load_dotenv(override=True)
app = Flask(__name__)
CORS(app)