12 lines
200 B
Python
12 lines
200 B
Python
from app import create_app
|
|
|
|
|
|
def main() -> None:
|
|
"""Run the Flask application."""
|
|
app = create_app()
|
|
app.run(debug=True, host="0.0.0.0", port=5000)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|