Initial commit from ux_aura_central

This commit is contained in:
DIVYANSH-675
2026-03-25 01:21:37 +05:30
commit b096f07978
69 changed files with 5922 additions and 0 deletions

17
docker-compose.yml Normal file
View File

@@ -0,0 +1,17 @@
version: '3.8'
services:
aura_central:
build:
context: .
dockerfile: Dockerfile
command: sh -lc "if [ ! -d node_modules ] || [ -z \"$(ls -A node_modules 2>/dev/null)\" ] || [ ! -d node_modules/@rollup/rollup-linux-arm64-musl ]; then npm ci --include=optional; fi; npm run dev"
ports:
- "3000:3000"
volumes:
- .:/app
- /app/node_modules
environment:
- GEMINI_API_KEY=${GEMINI_API_KEY}
stdin_open: true
tty: true