Skip to content

Latest commit

 

History

History
executable file
·
60 lines (38 loc) · 1.55 KB

Setup-Instruction.md

File metadata and controls

executable file
·
60 lines (38 loc) · 1.55 KB

Setup Instructions

This section provides instructions for setting up and running the project on a local machine.

  1. Clone the Repository:

    Clone this repository to your local machine using the following command:

    git clone https://github.com/vishalx360/taskflow-space.git
  2. Navigate to Project Directory:

    Change to the project directory using the following command:

    cd taskflow-space
  3. Install Dependencies:

    Install the project dependencies:

    npm install

    or using pnpm

    pnpm install
  4. Copy .env.example:

    Duplicate the .env.example file and rename it to .env using the following command:

    cp .env.example .env
  5. Configure Environment Variables:

    Open the .env file and provide values for the environment variables as required by your project.

  6. Start Development Server:

    Start the development server using the following command:

    npm run dev

Your Next.js app should now be running locally at http://localhost:3000.