Welcome to the Quiz Management System

Frontend Live Link: https://quiz-frontend-five.vercel.app/

Run this repository on your local machine

Please follow the below instructions to run this repository on your local machine:

  1. Clone this entire repository

    git clone https://github.com/Khairul38/quiz-frontend
  2. Go to the cloned project directory

    cd quiz-frontend
    
  3. Make environment file with the following system

    # Make .env.local file accordingly :
    NEXT_PUBLIC_API_BASE_URL=http://localhost:5000/api/v1
    
  4. Install dependencies

    yarn
    
    # or
    
    npm i
  5. Run project

    # development mode
    yarn dev
    #or
    npm run dev
    
    # build mode
    yarn build
    #or
    npm run build
    
    # production mode
    yarn start
    #or
    npm run start

Thanks