These instructions will guide you through the process of setting up and running the project locally on your machine.
Before you begin, make sure you have the following software installed on your system:
First, clone the project repository to your local machine using Git:
git clone https://github.com/your-username/Job-portal.git
Replace muhammadshakkeerp
with your GitHub username and Job-portal
with the name of your repository.
Navigate to the project directory:
cd Job-portal
Install the necessary dependencies using npm:
npm install
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
NEXTAUTH_URL=http://localhost:3000
NEXTAUTH_SECRET=your_nextauth_secret
NEXT_PUBLIC_URL=http://localhost:3000
/** @type {import('next').NextConfig} */
const nextConfig = {
images: {
domains: ['lh3.googleusercontent.com'],
},
}
export default nextConfig
Once the dependencies are installed, you can run the application:
npm run dev
This command will start the development server and open the project in your default web browser.