Skip to content

Latest commit

 

History

History
63 lines (49 loc) · 1.43 KB

Learn.md

File metadata and controls

63 lines (49 loc) · 1.43 KB

JobLane : Job application portal project

Installation of JobLane.

Setting up MERN Stack:

Follow the installation instructions for MongoDB, Express.js, React.js, and Node.js.

🛠️ Installation Steps:

  1. Clone the repository to your local machine:

    git clone https://github.com/sujaltangde/JobLane.git 
  2. Change into the frontend directory:

    cd client
  3. Install the frontend dependencies:

    npm install
  4. Run the development frontend server:

    npm run dev
  5. Return to the main directory and change into the backend directory:

    cd ..
    cd server
  6. Install the backend dependencies:

    npm install
  7. Configure env file (generate config.env template by running the following command)

    cp config.env config.sample.env
  8. Open config.env file from config folder replace the following credentials

    DB = 
    CLOUDINARY_NAME = 
    CLOUDINARY_API_KEY =
    CLOUDINARY_API_SECRET =
  9. Run the development backend server:

    nodemon server.js

Learning Objectives

  • Mastering MERN stack development for building modern web applications.
  • Understanding comman features of job portal websites and there workflow.
  • Gaining practical experience in software development, testing, and deployment in a real-world project scenario.