/Devoverflow_Nextjs14

DevOverflow, a sophisticated Next.js 14 application, is meticulously designed as a comprehensive Q&A platform catering specifically to developers. This platform functions as a dynamic hub where developers, regardless of their skill levels or expertise, converge to seek guidance, exchange insights, and foster a collaborative learning environment.

Primary LanguageTypeScript

DevOverflow Next.js 14

demo

🌐 Live Demo

Explore the live demonstration of the project: nextjs14-devoverflow

📝 Description

DevOverflow, a sophisticated Next.js 14 application, is meticulously designed as a comprehensive Q&A platform catering specifically to developers. This platform functions as a dynamic hub where developers, regardless of their skill levels or expertise, converge to seek guidance, exchange insights, and foster a collaborative learning environment

Project Folder Structure
Devoverflow_Nextjs14/
├── .env.local
├── .eslintrc.json
├── app/
│   ├── auth/
│   │   ├── sign-in/
│   │   │   └── [...sign-in]/
│   │   │       └── page.tsx
│   │   └── sign-up/
│   │       └── [...sign-up]/
│   │           └── page.tsx
│   ├── root/
│   │   ├── home/
│   │   │   ├── loading.tsx
│   │   │   └── page.tsx
│   │   ├── ask-question/
│   │   │   └── page.tsx
│   │   ├── collection/
│   │   │   ├── loading.tsx
│   │   │   └── page.tsx
│   │   ├── community/
│   │   │   ├── loading.tsx
│   │   │   └── page.tsx
│   │   ├── jobs/
│   │   │   ├── loading.tsx
│   │   │   └── page.tsx
│   │   ├── profile/
│   │   │   ├── edit/
│   │   │   │   └── page.tsx
│   │   │   └── [id]/
│   │   │       └── loading.tsx
│   │   │       └── page.tsx
│   │   └── question/
│   │       ├── edit/
│   │       │   └── [id]/
│   │       │       └── page.tsx
│   │       └── [id]/
│   │           └── page.tsx
│   ├── api/
│   │   └── chatgpt/
│   │       └── jobSearch/
│   │           ├── webhook/
│   │           └── favicon.ico
│   ├── globals.css
│   └── components/
│       ├── cards/
│       │   ├── AnswerCard.tsx
│       │   ├── JobCard.tsx
│       │   ├── QuestionCard.tsx
│       │   └── UserCard.tsx
│       ├── forms/
│       │   ├── Answer.tsx
│       │   ├── Profile.tsx
│       │   └── Question.tsx
│       ├── Home/
│       │   └── HomeFilters.tsx
│       ├── jobs/
│       │   └── JobBadge.tsx
│       └── shared/
│           ├── AllAnswers.tsx
│           ├── AnswersTab.tsx
│           ├── EditDeleteAction.tsx
│           ├── Filter.tsx
│           ├── Filters.tsx
│           ├── LeftSidebar.tsx
│           ├── Metric.tsx
│           ├── Navbar/
│           │   ├── MobileNav.tsx
│           │   ├── Navbar.tsx
│           │   └── Theme.tsx
│           ├── NoResult.tsx
│           ├── Pagination.tsx
│           ├── ParseHTML.tsx
│           ├── ProfileLink.tsx
│           ├── QuestionTab.tsx
│           ├── RenderTag.tsx
│           └── RightSidebar.tsx
├── components.json
├── constants/
│   ├── filters.ts
│   └── index.ts
├── content/
│   ├── countries.json
│   └── jsearch.json
├── context/
│   └── ThemeProvider.tsx
├── database/
│   ├── answer.model.ts
│   ├── interaction.model.ts
│   ├── question.model.ts
│   ├── tag.model.ts
│   └── user.model.ts
├── lib/
│   ├── actions/
│   │   ├── answer.action.ts
│   │   ├── general.action.ts
│   │   ├── interaction.action.ts
│   │   ├── job.action.ts
│   │   ├── question.action.ts
│   │   ├── shared.types.d.ts
│   │   ├── tag.actions.ts
│   │   └── user.action.ts
│   ├── mongoose.ts
│   ├── utils.ts
│   ├── validations.ts
│   ├── middleware.ts
│   └── next-env.d.ts
├── next.config.js
├── package-lock.json
├── package.json
├── postcss.config.js
├── public/
│   └── assets/
│       ├── icons/
│       │   ├── (various SVG and image files)
│       └── images/
│           ├── (various image files)
├── README.md
├── settings.json
├── styles/
│   ├── prism.css
│   ├── theme.css
│   └── tailwind.config.ts
├── tsconfig.json
└── types/
    └── index.d.ts

📖 Table of Contents

Table of Contents

✨ Technologies Used

DevOverflow is built using the following technologies:
  • TypeScript: TypeScript is a typed superset of JavaScript that compiles to plain JavaScript.
  • Next.js: Next.js is a React framework for building server-side rendered and statically generated web applications.
  • Tailwind CSS: Tailwind CSS is a utility-first CSS framework for rapidly building custom user interfaces.
  • ESLint: ESLint is a static code analysis tool for identifying problematic patterns found in JavaScript code.
  • Prettier: Prettier is an opinionated code formatter.
  • Clerk: Clerk is a developer-first authentication API that handles all the logic for user sign up, sign in, and more.
  • Shadcn-UI: Shadcn UI is a React UI library that helps developers rapidly build modern web applications.
  • TinyMCE: TinyMCE is the world's most popular JavaScript library for rich text editing.
  • MongoDB: MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era.
  • Mongoose: Mongoose is a MongoDB object modeling tool designed to work in an asynchronous environment.
  • Prism.js: Prism is a lightweight, extensible syntax highlighter, built with modern web standards in mind.
  • Query String: Parse and stringify URL query strings.
  • Svix: Svix is a webhook proxy that allows you to receive webhooks locally.
  • Zod: Zod is a TypeScript-first schema declaration and validation library.
  • Vercel: Vercel is a cloud platform for frontend developers, providing the frameworks, workflows, and infrastructure to build a faster, more personalized Web.

Technologies Used

🧰 Get Started

To get this project up and running in your development environment, follow these step-by-step instructions.

📋 Prerequisites

In order to install and run this project locally, you would need to have the following installed on your local machine.

⚙️ Installation and Run Locally

Step 0:

Note ‼️ the application uses Clerk for Authentication and User Management, therefore, you need to create Clerk account here and sets the CLERK_PUBLISHABLE_KEY and CLERK_SECRET_KEY environment variables in .env file. Also, the different URLs for the Clerk sign-in, sign-up, after sign-in and after sign-up pages.

Note ‼️ the application uses a MongoDB database, therefore, you need to create a database and connect it to the application, for this, change the MONGODB_URL environment variable in .env file located in server folder.

Note ‼️ the application uses TinyMCE, therefore, you need to create TinyMCE account here and sets the NEXT_PUBLIC_TINYMCE_API_KEY environment variable in .env file.

Note ‼️ the application uses OpenAI API, therefore, you need to create OpenAI account here and sets the OPENAI_API_KEY environment variable in .env file.

Note ‼️ the application uses RapidAPI, therefore, you need to create RapidAPI account here, subscribe to the JSearch API and sets the RAPIDAPI_API_KEY environment variable in .env file.

After following all the instructions above, we'll want to create a new webhook on Clerk. To do this, go to the Clerk Dashboard, click on the "Webhooks" tab, and then click "Add Endpoint". For the Endpoint URL, enter http://<PASTE-YOUR-LINK-HERE>/api/webhook/clerk. For the events, select the "user". Then click "Create" to create the webhook. get the signing secret and set it as CLERK_WEBHOOK_SECRET environment variable in .env file.

Step 1:

Download or clone this repo by using the link below:

git clone https://github.com/RakshithDB1/Devoverflow_Nextjs14.git

Step 2:

Execute the following command in the root directory of the downloaded repo in order to install dependencies:

npm install

Step 3:

Execute the following command in order to run the development server locally:

npm run dev

Step 4:

Open http://localhost:3000 with your browser to see the result.

📜 Scripts

All scripts are defined in the package.json file. Here is a list of all scripts:

Script Action
npm install Installs dependencies
npm run dev Starts local dev server at localhost:3000
npm run build Build your production site to ./dist/
npm run start Start your production site locally
npm run lint Run ESLint

🔒 Environment Variables

Environment variables[^12] can be used for configuration. They must be set before running the app.

Environment variables are variables that are set in the operating system or shell, typically used to configure programs.

DevOverflow uses Clerk, TinyMCE, RapidAPI, OpenAI API and MongoDB as external services. You need to create an account on each of these services and get the required credentials to run the app.

Create a .env file in the root directory of the project and add the following environment variables:

NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=<CLERK_PUBLISHABLE_KEY>
CLERK_SECRET_KEY=<CLERK_SECRET_KEY>
NEXT_CLERK_WEBHOOK_SECRET=<CLERK_WEBHOOK_SECRET>
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/
NEXT_PUBLIC_TINY_EDITOR_API_KEY=<YOUR_TINY_EDITOR_API_KEY>
MONGODB_URL=<YOUR_MONGODB_URL>
NEXT_PUBLIC_SERVER_URL=<YOUR_SERVER_URL>
OPENAI_API_KEY=<YOUR_OPENAI_API_KEY>
RapidAPI_Key=<YOUR_RAPID_API_KEY>
RapidAPI_Host=<YOUR_RAPIDAPI_HOST>

🚀 Deployment

Deploy to production (manual)

You can create an optimized production build with the following command:

npm run build

Deploy on Vercel (recommended)

The easiest way to deploy this Next.js app is to use the Vercel Platform.

📚 References

JSMastery. (2023). Ultimate Next.js 14 Course | Become a top 1% Next.js 14 developer. E-Learning.