Assignment 4: Starting with Full Stack
Now that you've learned how to mess with both parts, the frontend and backend, let's put them together!
First, save your changes from the previous section by
creating a new branch
staging the files you've changed
committing to your new branch
push to remote if you'd like
Let's get the most updated skeleton code by running
Ideally, you should have no merge conflicts and no error messages. However, it's likely that you will run into a message that may look like this
This means that your set of local changes have diverged from the remote. Generally, we like to use the rebase
method. This means that you move your set of changes on top of the new ones on remote, and combine them. More about rebasing here:
Now let's move on to the actual assignment.
Last updated