expressjs -> nextjs

This commit is contained in:
Ludwig Lehnert
2026-03-27 19:50:53 +01:00
parent bcaec8636d
commit 8b937eee72
34 changed files with 3769 additions and 3078 deletions

View File

@@ -12,13 +12,6 @@ mkdir -p ./data
echo "Ensured ./traefik and ./data exist."
if [ ! -f .logins ]; then
cp .logins.example .logins
echo "Created .logins from .logins.example"
else
echo "Found existing .logins"
fi
if [ ! -f .env ]; then
cp .env.example .env
echo "Created .env from .env.example"
@@ -28,6 +21,6 @@ fi
echo "Initialization complete."
echo "Next steps:"
echo "1) Edit .env and set SERVICE_FQDN, LETSENCRYPT_EMAIL, DATA_DIR, UPLOAD_TTL_SECONDS"
echo "2) Edit .logins to add users (bcrypt)"
echo "3) docker compose up --build"
echo "1) Edit .env and set SERVICE_FQDN, LETSENCRYPT_EMAIL, DATA_DIR, UPLOAD_TTL_SECONDS, optional UPLOAD_MAX_BYTES"
echo "2) Set MANAGEMENT_ADMIN_HASH in .env for admin login"
echo "3) Start with docker compose up --build"