Reorganized files in preparation for interface work
This commit is contained in:
parent
df09e99888
commit
c4fe022d42
9 changed files with 15 additions and 1 deletions
12
docker/router-dash/app/main.py
Normal file
12
docker/router-dash/app/main.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from flask import Flask
|
||||
from page_dashboard import bp as dashboard_bp
|
||||
from page_signup import bp as signup_bp
|
||||
from page_signin import bp as signin_bp
|
||||
|
||||
app = Flask(__name__)
|
||||
app.register_blueprint(dashboard_bp)
|
||||
app.register_blueprint(signup_bp)
|
||||
app.register_blueprint(signin_bp)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app.run(host="0.0.0.0", port=25327)
|
||||
1
docker/router-dash/data/authorized_accounts.json
Normal file
1
docker/router-dash/data/authorized_accounts.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
1
docker/router-dash/data/dashboard_content.json
Normal file
1
docker/router-dash/data/dashboard_content.json
Normal file
|
|
@ -0,0 +1 @@
|
|||
{}
|
||||
|
|
@ -89,7 +89,7 @@ These packages are required. `core.py --install` checks that they are installed
|
|||
The following services conflict with this suite. No manual action is required: `core.py` disables them automatically on `--apply`. `core.py` re-enables them on `--disable`.
|
||||
|
||||
- **systemd-resolved** - DNS stub resolver that conflicts with `dnsmasq` on port 53. Disabled on `--apply`; re-enabled on `--disable`.
|
||||
- **systemd-timesyncd** - Basic SNTP client that cannot serve time to LAN clients. Disabled on `--apply` and replaced by `chrony`; re-enabled on `--disable`.
|
||||
- **systemd-timesyncd** - Basic SNTP client that cannot serve time to LAN clients; replaced by `chrony`. Disabled on `--apply`; re-enabled on `--disable`.
|
||||
- **ufw** - Firewall manager that conflicts with the `nftables` ruleset. Disabled on `--apply` without removal.
|
||||
|
||||
---
|
||||
Loading…
Add table
Add a link
Reference in a new issue