Merge Bug Report and Update System into main #1

Merged
lyzcoote merged 14 commits from bug-report into main 2026-02-17 11:23:10 +01:00
28 changed files with 25 additions and 1 deletions
Showing only changes of commit 492db8fcf8 - Show all commits

View File

@@ -12,6 +12,7 @@ ADMIN_KEY=change_me_admin_key
# Server
PORT=3000
DASHBOARD_PORT=3001
# Rate Limiting
RATE_LIMIT_MAX=5

7
server/.gitignore vendored
View File

@@ -2,3 +2,10 @@ node_modules/
.env
dist/
*.log
# Dashboard
dashboard/node_modules/
dashboard/.svelte-kit/
dashboard/build/
dashboard/.env
dashboard/bun.lock

View File

@@ -37,7 +37,7 @@ services:
condition: service_healthy
dashboard:
build: ../dashboard
build: ./dashboard
ports:
- "${DASHBOARD_PORT:-3001}:3000"
environment:

View File

@@ -0,0 +1,16 @@
[Unit]
Description=EMLy Bug Report Server (Docker Compose)
Requires=docker.service
After=docker.service
[Service]
Type=oneshot
RemainAfterExit=yes
WorkingDirectory=/opt/emly-server
ExecStart=/usr/bin/docker compose up -d
ExecStop=/usr/bin/docker compose down
Restart=on-failure
TimeoutStartSec=120
[Install]
WantedBy=multi-user.target