Skip to content

Latest commit

 

History

History
32 lines (30 loc) · 839 Bytes

README.md

File metadata and controls

32 lines (30 loc) · 839 Bytes

Following are the steps to run the backend of the portgen on your local environment

  1. Install all the required packages and dependencies.
npm install
  1. Create a .env file in the same directory with the following configurations
MONGODBURL = <your mongodb url for connection>

eg: mongodb://localhost:27017/portgen

  1. Run the server.
npm start
  1. Click here to see the backend server running in the browser OR navigate to
http://localhost:5000
  1. To run the client, navigate into the client directory
  cd client
  1. Run the client
npm start
  1. Click here to see the client running in the browser OR navigate to
http://localhost:3000