This is an app designed to store and browse through a collection of your most used code snippets.
Explore the app functionality here.
Interested in the design of this app? Check out the Figma file.
This project was built using the following technologies:
- React
- NextJS
- Tailwind
To get this project up and running locally, you must already have installed the following packages on your computer.
Want to contribute to this project? Follow the steps below to set up the project locally.
- Fork this repository.
- Clone your forked repository to your local machine.
git clone https://github.com/<your-github-username>/snippets.git
- Navigate to the project directory:
cd codepets
- Install the dependencies:
npm install
- Create a new branch:
git checkout -b <your-branch-name>
At this point, you can now modify existing files or add new files to the project on your own branch.
- Stage your changes and commit
Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add
command.
Add changes
git add .
Commit changes
git commit -m "commit message"
- Push your changes to GitHub:
git push -u origin <your-branch-name>
Don't forget to drop a star ✨ while you're here!