@@ -8,6 +8,8 @@ Main apps:
88- ` apps/dashboard-api ` : admin/project management API for the dashboard
99- ` apps/public-api ` : public project API for data, auth, storage
1010- ` apps/web-dashboard ` : React/Vite dashboard
11+ - ` apps/consumer ` : Consumer Worker for background jobs and webhooks
12+ - ` apps/python-service ` : Python AI Microservice (FastAPI/Groq)
1113- ` packages/common ` : shared models, validation, middleware, encryption, DB/model utilities
1214
1315SDKs:
1820
1921Workspace scripts are defined in [ package.json] ( /package.json ) .
2022
23+ ## Production Deployment Endpoints & Domains
24+
25+ - ** Frontend Landing** : ` https://urbackend.bitbros.in `
26+ - ** Dashboard App** : ` https://app.urbackend.bitbros.in `
27+ - ** Dashboard API (Internal/Admin)** : ` https://api.urbackend.bitbros.in `
28+ - ** Public API (SDK & User Auth)** : ` https://api.ub.bitbros.in `
29+
2130## Important project rules
2231
23321 . Do not treat ` users ` like a normal collection.
@@ -151,6 +160,12 @@ cd apps/web-dashboard
151160npm run build
152161```
153162
163+ Run python service tests:
164+ ``` bash
165+ cd apps/python-service
166+ pytest
167+ ```
168+
154169Run SDK tests:
155170``` bash
156171# JS Core SDK
@@ -169,6 +184,7 @@ pytest
169184Before shipping auth, RLS, or schema changes:
170185- run ` apps/public-api ` tests
171186- run ` apps/dashboard-api ` tests
187+ - run ` apps/python-service ` tests
172188- run ` @urbackend/sdk ` tests
173189- run ` @urbackend/react ` tests
174190- run ` apps/web-dashboard ` lint
0 commit comments