v_1.5
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
"""WSGI entry point for the backoffice (port 9001)."""
|
||||
from app import create_app
|
||||
|
||||
application = create_app("backoffice")
|
||||
|
||||
if __name__ == "__main__":
|
||||
import os
|
||||
port = int(os.environ.get("BACKOFFICE_PORT", "9001"))
|
||||
application.run(host="0.0.0.0", port=port, debug=False)
|
||||
Reference in New Issue
Block a user