This will be the starter code for your final project! But first, we're going to spend a day making improvements to it. We'll use pull requests to manage this, and for that you'll need to be on your own branch. You can work in pairs or on your own.
Click on the Fork button: This is usually found in the top-right corner of the repository's page. This will create a copy of the repository under your own GitHub account.
- Go to your forked repository on GitHub.
- Click on the green "Code" button and copy the URL.
- Open your terminal or Git Bash and run:
$ git clone https://github.com/your-username/repository-name.git
- Navigate to the repository directory
- Run the following command to be able to run your program.
$ git yarn install
- Add the original repository as a remote: This allows you to pull in updates from the original repository.
$ git remote add upstream https://github.com/Snap-Engineering-Academy-2024/SnapChatStarter.git
- Verify the new remote named 'upstream'
$ git remote -v
Get the code running! You'll need to rename .env.example
to .env.local
file. You should be able to reuse the Supabase keys from earlier's week project.