10 lines
285 B
Python
10 lines
285 B
Python
"""WSGI entry point for the frontoffice (port 8080)."""
|
|
from app import create_app
|
|
|
|
application = create_app("frontoffice")
|
|
|
|
if __name__ == "__main__":
|
|
import os
|
|
port = int(os.environ.get("FRONTOFFICE_PORT", "8080"))
|
|
application.run(host="0.0.0.0", port=port, debug=False)
|