Files
Vish 3b9d759b4b feat: add fluxer upstream source and self-hosting documentation
- Clone of github.com/fluxerapp/fluxer (official upstream)
- SELF_HOSTING.md: full VM rebuild procedure, architecture overview,
  service reference, step-by-step setup, troubleshooting, seattle reference
- dev/.env.example: all env vars with secrets redacted and generation instructions
- dev/livekit.yaml: LiveKit config template with placeholder keys
- fluxer-seattle/: existing seattle deployment setup scripts
2026-03-13 00:55:14 -07:00

26 lines
596 B
JSON

{
"name": "@fluxer/integration",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"integration": "./scripts/run_integration.sh",
"server:logs": "./scripts/server_logs.sh",
"server:start": "./scripts/server_start.sh",
"server:stop": "./scripts/server_stop.sh",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest"
},
"dependencies": {
"@fluxer/constants": "workspace:*",
"ws": "catalog:"
},
"devDependencies": {
"@types/node": "catalog:",
"@types/ws": "catalog:",
"vite-tsconfig-paths": "catalog:",
"vitest": "catalog:"
}
}