Install Flask and serve index.html

This commit is contained in:
Tanner Collin 2021-03-07 19:16:35 -07:00
parent ba63fcaf01
commit 026913013a
2 changed files with 13 additions and 3 deletions

1
client/build/index.html Normal file
View File

@ -0,0 +1 @@
hello world

View File

@ -1,3 +1,12 @@
import socket
import sys
import time
from flask import Flask
from flask_cors import CORS
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()