➡ Link to the Frontend repository: Questionnaire Editor - Frontend
A NestJS application responsible for serving the RESTful API consumed by the Frontend linked above through a MongoDB database.
# development
pnpm run start
# watch mode
pnpm run start:dev
# production mode
pnpm run start:prod
# unit tests
pnpm run test
# test coverage
pnpm run test:cov
# building the backend image
docker build -t questionnaire-editor-backend .
# starting docker-compose with the MongoDB image
docker-compose up -d questionnaire-editor-backend
Please read the Design Decisions and Better Alternatives section in the Frontend repository.