Skip to content

Helping-Society/helpers

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

41 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Helpers

Tech Stack 🗃

Getting Started 👨‍💻

Setup the repository to your local environment.

  1. Fork the repository - Creates a replica of repository to your local environment.
  2. Clone the repository - Downloads all repo files to your machine, using
git clone https://github.com/YOUR-USERNAME/Helpers
  1. Set working directory to the root directory of the project.
cd Helpers

Frontend ⚛️

Following are the steps to run the frontend of the community-website on your local. All the frontend code will go in the frontend directory.

  1. Navigate to frontend folder.
cd frontend
  1. Install all the required packages and dependencies.
npm install
  1. Run the server.
npm run start
  1. Click here to view it in the browser OR navigate to
http://localhost:3000

The website is live at https://helpingsociety.herokuapp.com/

Backend 💻

Following are the steps to run the backend of the Helpers on your local. All the backend code will go in the backend folder.

  1. Navigate to backend folder.
cd backend
  1. Install all the required packages and dependencies.
npm install
  1. Run the server.
npm run dev
  1. Click here to see the backend server runing in the browser OR navigate to
http://localhost:8080