Skip to content

Commit d0581aa

Browse files
committed
docs: add production deployment domains to AGENTS.md
1 parent 995b320 commit d0581aa

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

AGENTS.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

1315
SDKs:
@@ -18,6 +20,13 @@ SDKs:
1820

1921
Workspace 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

2332
1. Do not treat `users` like a normal collection.
@@ -151,6 +160,12 @@ cd apps/web-dashboard
151160
npm run build
152161
```
153162

163+
Run python service tests:
164+
```bash
165+
cd apps/python-service
166+
pytest
167+
```
168+
154169
Run SDK tests:
155170
```bash
156171
# JS Core SDK
@@ -169,6 +184,7 @@ pytest
169184
Before 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

Comments
 (0)