This repository handles the server-side functionalities of an educational forum. Built with Domain-Driven Design (DDD) and Clean Architecture principles. The backend is responsible for managing user authentication, handling discussion threads, and storing and retrieving data. This backend serves as the core for collaboration between students and teachers, providing a API to manage questions, answers, notifications, and other features.
-
User registration and authentication.
-
Create, edit, and delete questions and answers.
-
Comment on questions and answers.
-
Mark the best answer for a question.
-
Notifications for key forum interactions.
-
File uploads and attachment management by Cloudflare R2.
-
Nest.js - A progressive Node.js framework.
-
Prisma - ORM for database access.
-
Vitest - Unit and e2e testing.
-
Docker - Containerization for execution.
-
Redis - Caching for performance optimization.
-
CloudFlare R2 - Upload and storage of attachments
- Clone the repository:
git clone https://github.com/DanielF-Cardoso/forum-nest.git
- Run Docker: To use Redis and Postgress services with Docker
docker-compose up -d
- Set up environment variables: Create a .env file based on the provided example
cp .env-example .env
- Install dependencies:
npm install
- Set up the database: Ensure Prisma is properly configured and apply migrations
npx prisma migrate dev
- Run the application locally:
npm run start:dev
- Run the Unit test:
npm run test
- Run the Unit tests in watch mode:
npm run test:watch
- Run the Unit tests with coverage:
npm run test:cov
- Run end-to-end tests:
npm run test:e2e
- Run end-to-end tests in watch mode:
npm run test:watch