ui redesign, markdown fix + metadata and auth header

This commit is contained in:
2026-05-09 05:09:07 +02:00
parent 7f8a66f360
commit bc6a34cf1f
42 changed files with 3093 additions and 517 deletions
+14 -2
View File
@@ -1,8 +1,20 @@
# Backend Configuration
PORT=3000
ADMIN_TOKEN=your_secure_random_token_here
# REQUIRED. Long random string. Generate with `openssl rand -hex 32`.
# Used as the admin token; stored as an HttpOnly cookie after login.
ADMIN_TOKEN=
DATA_DIR=/app/data
# Cookie hardening. Default is true; set to false for local HTTP development
# only. In production with HTTPS, leave this true.
COOKIE_SECURE=true
# CORS allow-list. Leave empty unless you expose the backend directly to
# browsers. With the default Astro proxy setup, no CORS is needed.
FRONTEND_ORIGIN=
# Frontend Configuration
# URL of the backend API accessible from the frontend container
# URL of the backend API accessible from the frontend container.
PUBLIC_API_URL=http://backend:3000