"""
run.py
------
The file you point Flask at to start the development server.

Usage (from inside the matchplay-template folder):

    flask --app run.py run --debug

--debug turns on auto-reload (the server restarts itself whenever you save
a change to a file) and shows detailed error pages — turn this OFF before
ever exposing the app to the internet on a real server.
"""

from app import create_app

app = create_app()

if __name__ == "__main__":
    app.run(debug=True)
