This repository contains the code for Next-Events, a web application to list events.
It's a part of the Beginning Next.js Development book
First, run npm install
to install the dependencies:
npm install
This application uses MongoDB, so please create a .env
file in the project root folder and add your MongoDB connection string to it.
You can copy and rename the .env.sample
file added in this project.
Then run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.