Skip to content

shmiitg/Portgen

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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