diff --git a/.env.example b/.env.example index 81ec5a1..4838b84 100644 --- a/.env.example +++ b/.env.example @@ -33,3 +33,6 @@ NOTIFY_SMTP_PASS= # Bootstrap invitations BOOTSTRAP_INVITE_DEADLINE=2025-09-01T00:00:00Z + +# Manual invitation generator +MANUAL_INVITE_PASSWORD=pm.local@zghl.de diff --git a/nuxt.config.ts b/nuxt.config.ts index 96d6d5d..57d2e26 100644 --- a/nuxt.config.ts +++ b/nuxt.config.ts @@ -20,6 +20,7 @@ export default defineNuxtConfig({ ttsModel: process.env.TTS_MODEL || 'tts-1', jwtSecret: process.env.JWT_SECRET, jwtRefreshSecret: process.env.JWT_REFRESH_SECRET || process.env.JWT_SECRET, + manualInvitePassword: process.env.MANUAL_INVITE_PASSWORD, mongoose: { uri: process.env.MONGODB_URI || 'mongodb://127.0.0.1:27017/opensquawk', options: {},