Skip to content

GiovTemp/CrowdPulse

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Introduction

The software is divided into two macro-components, the "Frontend" package and the "Backend" package. Both will need to be launched at the same time to run correctly the software. The Frontend component will be reachable at port 3000. The Backend component will be reachable at port 4000.

Dependencies

MongoDB : 5.0 - Node.js : 14.18.0 - Npm : 6.14.15

Installation Frontend

Use the package manager npm to install the sofwtare.

cd frontend 
npm install
npm run build
# if run build fails due to permission denied
npm install react-scripts --save

Installation Backend

Use the package manager npm to install the sofwtare.

cd backend 
npm install

Run

# Start frontend 
cd frontend
npm start 

# Start backend 
cd backend
npm start 

Forever Run

Use the npm forever to runs continuously the software.

# Start frontend 
cd frontend
sudo npm install forever -g
forever start -c "npm start" ./

# Start backend 
cd backend
sudo npm install forever -g
forever start -c "npm start" ./

Test

The software is now reachable on http://localhost:3000/

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages