A volunteer scheduling, communicating, and tracking software application made for Hospice of SLO.
The purpose of this application is to improve the volunteer scheduling, communicating, and tracking processes for Hospice of SLO. Hospice of SLO is an incorporated 501(c)3 volunteer hospice serving San Luis Obispo County residents who are facing a life-limiting illness, end of life or grief.
The Hospice of SLO project team consists of 9 Cal Poly students. Over the course of about 9 months, we worked as a team to deploy this web application. The team members are listed below:
(From left to right)
- Cole Perry - Team Lead/Software Developer
- Sage Meadows - Software Developer
- Marissa Darnell - Software Developer
- Ben McMann - Software Developer
- Vance Winstead - Software Developer
- Jonathan Lu - Software Developer
- Skyler Han - Software Developer
- Tim Kim - Project Manager
- Mandy Ko - Designer
git clone https://github.com/hack4impact-calpoly/hospice-of-slo.git
npm start
(if its your first time, you might need to runnpm i
)
- Before you start making changes,
git pull
and thennpm i
- Create a branch
git checkout -b <name-of-branch>
- Make changes to the code
npm run lint
to ensure code standards. (runningnpm run lint-autofix
will fix most of the styling errors)
git add .
(to stage all files) orgit add <file-name>
(to stage specific file)git commit -m "short descriptive message describing chages"
git push -u origin <name-of-branch>
- Go to the Pull Requests tab
- Find your PR
- (If applicable, provide a screenshot of your work in the comment area)
- Request a reviewer to check your code.
- Once approved, go ahead and merge code in.