feat: add manual invitation generator

This commit is contained in:
Remi
2025-09-17 20:26:33 +02:00
parent c01c7d2801
commit e1d892af83
2 changed files with 4 additions and 0 deletions

View File

@@ -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

View File

@@ -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: {},