Skip to content
Permalink
Browse files
Update README.md
  • Loading branch information
vanhac2 committed Nov 18, 2020
1 parent 44977a5 commit 232350059f5f43c68ed1b9e5e95e9c0cc6b81604
Showing 1 changed file with 29 additions and 0 deletions.
@@ -18,3 +18,32 @@ To run a local instance of SafeCampus, follow the steps below:
2. Open RStudio and navigate to the IDEA-COVID-SAfeCampus directory using the RStudio files tab.
3. Set the working directory to IDEA-COVID-SAfeCampus.
4. Double-click to open app.R and select Run App on the top-right corner of the code window.

## Development
The SafeCampus app is in active development and undergoes daily updates. Please be sure to consistently pull from master in your local setup. If you notice any bugs, create an issue. Please ensure issues have a descriptive title, and the comment should describe where the bug was found and how you were using the application.

For all contributors, any changes made to the application should be written in a separate branch, and sent as a pull request. Please refrain from pushing changes directly to master, as we must ensure a working copy of the app at all times. When in doubt, follow this protocol:

1. Clone the repo...
2. cd into the resulting, new directory...
3. git checkout -b new_branch and git push origin (to claim their branch)
4. Code, code, code...
5. git commit -a -m "My awesome changes"
6. git commit -a -m "More awesome changes"
7. While still in your branch, do a git pull (only if others are also working on the branch)
8. Switch to master with git checkout master
9. Sync your master using git pull <<< This is the important step!
10. Now switch back to your branch with git checkout new_branch
11. Now git commit -a -m "Final awesome changes" and git push origin
12. Now you can do a PR, which should be safe from conflict.

## Issues Protocol

Found a bug? Please create an issue titled as a clear sentence describing the bug. In the description, please write as many details about your working environment as you can. Details include:

- Your machine and OS
- Your screen size and resolution
- The size of the SafeCampus app window
- What SafeCampus page did the bug appear on?
- What date/time/building/type of building/floor did the bug occur on, if applicable were selected when bug was found?
- Any other information you may deem relevant to said bug

0 comments on commit 2323500

Please sign in to comment.