updating initial layout
This commit is contained in:
15
andrew_portfolio/project.py
Normal file
15
andrew_portfolio/project.py
Normal file
@@ -0,0 +1,15 @@
|
||||
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()
|
||||
Reference in New Issue
Block a user