Docker Test with Nginx
This commit is contained in:
parent
886f22ac85
commit
1a3bee1846
14 changed files with 70 additions and 34 deletions
7
frontend/app.py
Normal file
7
frontend/app.py
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
from backend import create_app
|
||||
import os
|
||||
|
||||
app = create_app(os.environ.get('FLASK_ENV'))
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host='0.0.0.0', DEBUG=True)
|
||||
Loading…
Add table
Add a link
Reference in a new issue