datasaur/site/run.py
2026-01-25 15:56:01 +00:00

9 lines
210 B
Python

# Imports from the __init__.py file inside the surveyApp package
from surveyapp import create_app
# Creates instantiation of the app
app = create_app("dev")
if __name__ == '__main__':
app.run(debug=True)