Files
andrew-portfolio/andrew_portfolio/project.py
2020-01-27 03:48:57 +00:00

16 lines
208 B
Python

from flask import Flask
from flask import render_template
app = Flask(__name__)
print(app)
@app.route('/')
def serve():
return render_template('index.html')
if __name__ == '__main__':
app.run()