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)