Documentation Starter
Living reference for routes, deployment flow, and current project shape.
1) Current Architecture
- Main site and docs are static pages served via Vercel.
api.derricklabs.com is a separate Vercel project rooted at api-service/.
- CRM is currently frontend/static UI (v1.5), backend to be wired later.
3) Deploy Workflow(GitHub → Vercel)
- Edit files in GitHub (or locally), commit to
main.
- Vercel auto-builds and deploys on push.
- Verify by opening target route and checking expected content.
Recommended commit style: feat(scope): short description
4) Changelog
| Date |
Change |
Area |
Status |
| 2026-03-10 |
Initial domain + Vercel launch |
Web |
Live |
| 2026-03-10 | Clean route structure (/app, /crm, /docs, /status) |
Routing |
Live |
| 2026-03-10 |
API placeholder + /health.json |
API |
Live |
| 2026-03-10 |
CRM v1.5 dashboard + contacts table |
CRM |
Live |
5) Next Build Targets
- Wire CRM contacts + deals to real data source.
- Add API endpoints for contacts, deals, activities.
- Add auth layer and admin controls.
- Add monitoring + uptime checks for API.