A full-stack serverless application boilerplate built with AWS services, implementing clean architecture principles and HAL-FORMS hypermedia patterns. Features multiple frontend implementations (Mantine, shadcn/ui, DaisyUI, Svelte) sharing a common API.
The project follows clean architecture with dependency inversion:
The API implements HAL-FORMS for hypermedia-driven interactions:
# Install dependencies
npm install
# Start local development environment (Moto + API + web frontends)
make dev-start
# Or start with a specific frontend
make dev-start web=mantine # Mantine UI only
make dev-start web=shadcn # shadcn/ui only
make dev-start web=daisyui # DaisyUI only
make dev-start web=svelte # Svelte only
make dev-start web=none # API only (no frontend)
make dev-stop # Stop all services
make dev-restart # Restart all services
make dev-reset # Reset Moto data and restart
make dev-status # Check status of all services
make help # Show all available commands
# Run all tests
npm test
# Run tests in a specific package
cd core && npm test
cd framework && npm test
cd api.hypermedia && npm test
serverlesslaunchpad/
├── api.hypermedia/ # HTTP API with HAL-FORMS support
├── core/ # Business logic and interfaces
├── framework/ # AWS service implementations
├── types/ # Shared TypeScript types
├── infrastructure/ # CDK deployment code
├── web.mantine/ # React frontend with Mantine UI
├── web.shadcn/ # React frontend with shadcn/ui
├── web.daisyui/ # React frontend with DaisyUI
├── web.svelte/ # Svelte frontend
├── web.commons/ # Shared web utilities
├── web.commons.react/ # Shared React utilities
└── moto/ # Local AWS mock configuration