test and config api

This commit is contained in:
Sorrel Bri 2019-09-24 19:50:25 -07:00
parent acd8604f02
commit 636ffeb318

View file

@ -0,0 +1,15 @@
import os
from flask import Flask
app = Flask(__name__)
DEBUG = True
PORT = 8000
@app.route('/')
def hello_world():
return 'Hello World'
if __name__ == '__main__':
app.run(debug=DEBUG, port=PORT)