2024-01-09 17:52:13 +01:00
|
|
|
from flask import Flask, render_template
|
2024-01-10 19:16:28 +01:00
|
|
|
from db.migrate import _CREATE_MIGRATIONS_TABLE
|
2024-01-09 17:52:13 +01:00
|
|
|
|
|
|
|
|
# Create a new Flask instance
|
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Create a new route
|
|
|
|
|
@app.route('/')
|
|
|
|
|
def index():
|
|
|
|
|
# return 'Hello World'
|
|
|
|
|
return render_template('index.html', title='Home')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Run the application
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
|
app.run(port=5000, debug=True)
|