Welcome to the Betafore Task Frontend

Frontend Live Link: https://betafore-task-frontend.vercel.app/login

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/betafore-task-frontend
  2. Go to the cloned project directory

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

    # Make .env.local file accordingly :
    NEXT_PUBLIC_API_BASE_URL=http://localhost:5000/api/v1
    
    NEXT_PUBLIC_PAYMENT_STRIPE_PK=""
  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