EchoMind is a separated frontend/backend project organized into api (server) and web (frontend).
- Live Demo: http://echo-mind.coolify-tinca.tonob.net/
api/: Backend service code (Bun + TypeScript), providing APIs and business logic.web/: Frontend app code (Vite + TypeScript), providing the user interface.packages/: Reserved shared package directory (for common types, utilities, SDKs, etc.).CLAUDE.md: Project collaboration and development conventions.
cd api
bun install
bun run devDefault URL: http://localhost:3000
cd web
bun install
bun run devDefault URL (Vite): usually http://localhost:5173
- See
api/README.mdfor API details. - See
web/README.mdfor Web details.
Create two services in Coolify from the same repository, with different Base Directories:
- API Service
- Build Pack:
Nixpacks - Base Directory:
api - Port:
3000
- Build Pack:
- Web Service
- Build Pack:
Nixpacks - Base Directory:
web - Port:
3000(the port used byvite previewinside the container)
- Build Pack:
This repository already includes independent build/start settings in api/nixpacks.toml and web/nixpacks.toml, and Coolify will load them automatically based on each directory.