feat: deploy infrastructure + disk/drive, calendar, presentation, workspaces, onboarding, demo user

This commit is contained in:
2026-05-19 16:26:26 +03:00
parent 688d043dad
commit 3529c39b22
304 changed files with 18826 additions and 1176 deletions
+14
View File
@@ -0,0 +1,14 @@
#!/bin/bash
set -e
JWT_KEY=$(openssl rand -hex 64)
JWT_RESET_KEY=$(openssl rand -hex 64)
ENC_KEY=$(openssl rand -hex 32)
DB_PASS=$(openssl rand -hex 16)
cat << EOF
JWT_SECRET_KEY=$JWT_KEY
JWT_RESET_SECRET_KEY=$JWT_RESET_KEY
ENCRYPTION_KEY=$ENC_KEY
DB_PASS=$DB_PASS
EOF