added frontend + securing beta server invites

This commit is contained in:
2026-01-02 22:50:02 +05:30
parent cb12b8ef75
commit 9b17a99456
52 changed files with 5409 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ services:
build: .
environment:
- RUST_LOG
- API_KEY
- DISCORD_TOKEN
- SURREAL_ADDRESS
- SURREAL_USER
@@ -10,4 +11,26 @@ services:
- SURREAL_NS
- SURREAL_DB
- NVIDIA_API_KEY
restart: unless-stopped
- OLLAMA_SERVER_URL
- OLLAMA_MODEL
- AI_CHAT_COOLDOWN_MS
- BOT_OWNER_ID
- IGNORE_RUDE
- API_PORT=8080
restart: unless-stopped
web:
build: ./web
ports:
- "3000:3000"
environment:
- AUTH_SECRET
- AUTH_DISCORD_ID
- AUTH_DISCORD_SECRET
- BOT_API_KEY
- APP_URL
- BOT_API_URL=http://void-sentinel:8080
- NODE_ENV=production
depends_on:
- void-sentinel
restart: unless-stopped