Install Flask and serve index.html

This commit is contained in:
2021-03-07 19:16:35 -07:00
parent ba63fcaf01
commit 026913013a
2 changed files with 13 additions and 3 deletions
+1
View File
@@ -0,0 +1 @@
hello world
+12 -3
View File
@@ -1,3 +1,12 @@
import socket from flask import Flask
import sys from flask_cors import CORS
import time
build_folder = '../client/build'
app = Flask(__name__, static_folder=build_folder, static_url_path='')
CORS(app)
@app.route('/')
def index():
return app.send_static_file('index.html')
app.run()