For this project, you will be building a web application that lets people post their favorite gifs. Each post can be favorited by other users, and deleted by the original author. Users can also send direct messages to each other, and be notified when they have messages.
Open a terminal window and go to the giffygram
directory.
cd api
cp db.json.example giffygram.json
json-server giffygram.json
Open another terminal window and go to the giffygram
directory.
cd src
serve
Use the assets that you created during the deconstruction phase to construct your own working version of Giffygram.
Each teammate then drags one issue from the Backlog to the Doing column, and assigns themselves to the issue. You are now accountable for making sure that issue gets done.
You and all of your teammates share the responsibility of getting it done. No one works alone. It doesn't matter how many of your teammates you ask for help, as long as you ensure that the issue gets completed during the sprint.
Create a file named PULL_REQUEST_TEMPLATE.md
in your repository and place the following content into it. Every new PR you create will have this structure automatically.
#### Changes Made
1. Added file `filename` to `directoryname` directory.
1. Modified file `filename` to include `functionalityname` and functionality.
#### Steps to Review
1. Checkout this branch locally.
git fetch --all
git checkout branchname
```
Instructions for how reviewer can test functionality, and detailed description of what the expected outcome is. Example: When user does BLANK, then BLANK should happen.
Confirm file modifications are present as indicated above. Confirm no unused code or extraneous comments exist.