Skip to content
Snippets Groups Projects
Commit b3d954bc authored by Bo-Chun Chen's avatar Bo-Chun Chen
Browse files

Updated env variable name

Since FLASK_ENV is require, no need to setup two env with same value, using FLASK_ENV instead.
parent 80502bd2
No related branches found
No related tags found
No related merge requests found
......@@ -2,7 +2,7 @@ import os
from app import create_app
config_name = os.getenv('FLASK_CONFIG')
config_name = os.getenv('FLASK_ENV')
app = create_app(config_name)
if __name__ == '__main__':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment