Combined frontend and backend codebase for the Intersul service management platform. This repository keeps both applications under a single Git history so shared tooling, documentation, and deployment workflows stay in sync.
frontend/ – SvelteKit application responsible for the dashboard, client management, service history, and invitation-based onboarding experience. See frontend/README.md for framework-specific guidance.backend/ – NestJS API that exposes authentication, user invitation, services, clients, and reporting endpoints. Detailed setup lives in backend/README.md.Clone the repository
git clone <repository-url>
cd intersul
Install dependencies
cd frontend && npm installcd backend && npm installRun development servers
npm run dev (from frontend/)npm run start:dev (from backend/)Environment variables
backend/env.example to configure the API and database.frontend/README.md if additional customization is required.backend/docker-compose.yml to launch MySQL, Redis, and the NestJS API quickly..env values; adjust when running the stack locally or in staging.TEST_REPORT.md, test-frontend-*.js) interact with both services and help validate monorepo changes.frontend/src/lib/components) and shared services (backend/src/modules).backend/README.mdfrontend/README.mdFor questions about the monorepo structure or workflows, update this README or add new guides under docs/ (create the folder if it does not exist) so future contributors can follow the same process.