Created skeleton
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2020-03-25 00:19:12 +01:00
parent db72904b62
commit 453b686cbe
12 changed files with 111 additions and 21 deletions

31
storage_service/app.py Normal file
View File

@@ -0,0 +1,31 @@
#!/usr/bin/env python3
import os
from flask import Flask
from werkzeug.middleware.proxy_fix import ProxyFix
# import stuff
from utils import register_all_error_handlers
# import views
from views import ObjectView
# create flask app
app = Flask(__name__)
app.wsgi_app = ProxyFix(app.wsgi_app, x_proto=1)
# important stuff
app.secret_key = os.environ.get('SECRET_KEY', os.urandom(12))
# register error handlers
register_all_error_handlers(app)
# register views
for view in [ObjectView]:
view.register(app, trailing_slash=False)
# start debuggig if needed
if __name__ == "__main__":
app.run(debug=True)