Step 2
Create a GitHub repository to host the files for this project.
Update the README.md
file only to contain the following content. Replace the "link to the project's repository" with the one you created.
# QuickNote App
A simple note-taking application that uses browser local storage for persistence.
## Run Locally
Clone the project
```bash
git clone https://link-to-project
```
Go to the project directory
```bash
cd my-project
```
Install dependencies
```bash
npm install
```
Start the server
```bash
npm run start
```
The example above is a minimal README. However, it is important that you write a good README for your software projects. Therefore, I encourage you to visit https://www.makeareadme.com/ to learn more about what makes a good README file. Moreover, you can visit https://readme.so/ to create a README using their templates.
Save all changes locally, stage, commit, and push to the GitHub repository.