diff --git a/features/messaging/frontend-showcase/package.json b/features/messaging/frontend-showcase/package.json index 8864a6894..164727a76 100644 --- a/features/messaging/frontend-showcase/package.json +++ b/features/messaging/frontend-showcase/package.json @@ -4,6 +4,7 @@ "type": "module", "scripts": { "dev": "bun run start:cluster", + "dev:real": "REAL_WS=true concurrently --names 'PROFILE,MESSAGING,SHOWCASE' -c 'blue,green,magenta' 'bun run profile:dev' 'cd ../../backend-api && bun run dev' 'wait-on http://localhost:5434/health && REAL_WS=true vite'", "dev:vite": "vite", "start:cluster": "concurrently --names 'PROFILE,SHOWCASE' -c 'blue,magenta' 'bun run profile:dev' 'wait-on http://localhost:5434/health && vite'", "profile:dev": "cd ../../profile/backend-api && NODE_ENV=showcase DATABASE_AUTO_SEED=true DATABASE_POSTGRES_PORT=25442 DATABASE_POSTGRES_HOST=localhost DATABASE_POSTGRES_USER=lilith DATABASE_POSTGRES_PASSWORD=profile_dev DATABASE_POSTGRES_NAME=lilith_profile DATABASE_REDIS_HOST=localhost DATABASE_REDIS_PORT=26379 DATABASE_REDIS_PASSWORD=redis_dev DATABASE_SYNCHRONIZE=true IDENTIFIER_PEPPER=showcase_dev_pepper PORT=5434 bun run dev:showcase",