A TypeScript monorepo built with Bun.
rainmaker/
├── api/ # Backend API service
├── ui/ # Frontend UI service
├── package.json # Root workspace configuration
└── tsconfig.json # Shared TypeScript configuration
Make sure you have Bun installed.
bun installRun both UI and API in development mode:
bun devOr run them separately:
# Run just the API
bun dev:api
# Run just the UI
bun dev:uiBuild both projects:
bun buildOr build them separately:
# Build just the API
bun build:api
# Build just the UI
bun build:ui