Skip to content
Snippets Groups Projects
Commit 15b8b74a authored by ale's avatar ale
Browse files

do not die if the app configuration is not found

parent 6ba3de88
No related branches found
No related tags found
No related merge requests found
...@@ -50,7 +50,7 @@ def run_frontend(opts): ...@@ -50,7 +50,7 @@ def run_frontend(opts):
) )
# Set some configuration options in the Flask global config. # Set some configuration options in the Flask global config.
app.config.from_pyfile(opts.app_config) app.config.from_pyfile(opts.app_config, silent=True)
http_server = WSGIServer((opts.bind_address, opts.port), app) http_server = WSGIServer((opts.bind_address, opts.port), app)
http_server.serve_forever() http_server.serve_forever()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment