This is a full-stack, backend-focused comment application designed to demonstrate clean architecture, database design, and DevOps practices.
The entire application is containerized and can be run with a single command.
- Backend: NestJS, TypeScript
- Frontend: React, TypeScript
- Database: PostgreSQL
- Containerization: Docker & Docker Compose
- Docker
- Docker Compose
-
Clone the repository:
git clone https://github.com/muzzlol/commentapp.git cd commentapp -
Start the entire application stack:
docker compose -f docker-compose.dev.yaml up --build
The --build flag is recommended for the first run to ensure the Docker images are built from the latest source code.
Once the containers are up and running, you can access the different parts of the application:
- Frontend Application: http://localhost:3000
- Backend API: http://localhost:3001
- Database: Connect via
localhost:5432(credentials are inbackend/.env.db)
The application is now ready for use. You can sign up for a new account and begin posting comments.