A simple developer events hub built with Next.js and MongoDB. This project allows users to view upcoming developer events and book them. All event data is currently stored as dummy data in MongoDB.
Check out the live project here: Dev Events on Vercel
- Display a list of developer events
- View event details
- Book events (dummy functionality)
- Fetches data from a MongoDB database
- Frontend & Backend: Next.js
- Database: MongoDB
- Styling: Tailwind CSS
- Clone the repository:
git clone https://github.com/your-username/dev-events.git
cd dev-events- Install dependencies:
npm install
# or
yarn install- Set up environment variables:
Create a .env.local file in the root and add following:
NEXT_PUBLIC_POSTHOG_KEY=your_posthog_key
NEXT_PUBLIC_POSTHOG_HOST=your_posthog_host
NEXT_PUBLIC_BASE_URL=http://localhost:3000 or your_base_url
CLOUDINARY_URL=your_cloudinary_connection_string
MONGODB_URI=your_mongodb_connection_string- Run the development server:
npm run dev
# or
yarn dev- Open http://localhost:3000 in your browser.