vioott commited on
Commit
03f7d90
·
1 Parent(s): 92d6cdd

build(app): add main entry point for local and production runs

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -12,3 +12,8 @@ app.register_blueprint(profile_bp)
12
 
13
  def create_app():
14
  return app
 
 
 
 
 
 
12
 
13
  def create_app():
14
  return app
15
+
16
+
17
+ if __name__ == '__main__':
18
+ app = create_app()
19
+ app.run(debug=True)