You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
239 B

from minibase.app import create_app
# Creation of the main app
flask_app = create_app()
# Running ht main app the flask app is configured at app.py with an external config.py file
if __name__ == '__main__':
flask_app.run(debug=True)