listGpus was removed from session.ts when migrating to RunPod Serverless, but server/index.ts still imported and registered it, failing the esbuild. Also stages stream API, StreamUpgrade page, and Dockerfile/compose fixes. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
14 lines
373 B
YAML
14 lines
373 B
YAML
services:
|
|
aethex-forge:
|
|
build:
|
|
context: .
|
|
args:
|
|
- VITE_SUPABASE_URL=${VITE_SUPABASE_URL}
|
|
- VITE_SUPABASE_ANON_KEY=${VITE_SUPABASE_ANON_KEY}
|
|
- VITE_AUTHENTIK_PROVIDER=${VITE_AUTHENTIK_PROVIDER}
|
|
container_name: aethex-forge
|
|
restart: unless-stopped
|
|
ports:
|
|
- "5050:5000"
|
|
env_file: .env
|
|
command: npm run start
|