Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 674 Bytes

CONTRIBUTING.md

File metadata and controls

35 lines (24 loc) · 674 Bytes

Installation(LOCAL SETUP)

WARNING : First install the backend through this repository https://github.com/dhruvpatidar359/nextDrawBackend

FrontEnd Installation

  1. Fork the Project
  use the github fork button
  1. Create a .env.local file in the directory and create the below field: Put the url of the locally hosted server that we have created before
 NEXT_PUBLIC_WEB_SOCKET= url of the server
  1. Install DependenciesNavigate to the project directory in your terminal and run:
  npm install
  # or
  yarn install
  1. Start the Development ServerAfter installing dependencies, run:
 npm run dev
 # or
 yarn dev