Simple web page made with Nextjs and MongoDB for reporting computational problems through tickets. Finally, Docker is used for containerization.
To set up the Next.js app on your local machine:
- Go to the project directory and install the required dependencies:
npm install- Create a
.env.localfile in the root directory and provide the next environment variable:
MONGODB_URI=mongodb://your-mongodb-uri
- Run the Next.js development server:
npm run dev- Make sure you have a running MongoDB instance and obtain the connection URI.
To deploy the application using Docker:
- Run the Docker image using the provided Docker compose:
docker compose-up -d


