Bryft is an all-in-one rideshare platform for UCLA students to find and give rides to other students. You can create ride posts if you are offering a ride, or you can join other people's rides. You can also leave reviews for drivers to let them know how their service is!
- Install Node if you have not
brew install node
- Clone this repo by the green "<> Code" button and copying the clone URL or by typing the following command into terminal in your desired directory:
git clone https://github.com/Alankvuong/Bryft.git
- Go to your cloned directory and install the node packages.
cd bryft
npm i
cd ..
cd backend
npm i
- Start Express server at http://localhost:8000. Make sure you are in the /backend folder before you run the following command:
node server.js
- Start client at http://localhost:3000. Make sure you are in the /bryft folder before you run the following command. You will most likely need to open up another terminal window and run:
cd bryft
npm start