Development

This commit is contained in:
Matthew Grotke 2026-06-07 16:27:16 -04:00
parent 19f0bfa79c
commit 687e0a66d1
8 changed files with 142 additions and 1 deletions

View file

@ -0,0 +1,10 @@
from flask import Flask
from pages.portal.page import bp as portal_bp
app = Flask(__name__)
app.register_blueprint(portal_bp)
if __name__ == '__main__':
import config_utils
port = config_utils.load_config().get('captive_portal', {}).get('http_port', 25328)
app.run(host='0.0.0.0', port=port)