https://github.com/renatorrocha/my-snippets
web application designed to help developers organize and manage their frequently used code snippets.
https://github.com/renatorrocha/my-snippets
Last synced: about 2 months ago
JSON representation
web application designed to help developers organize and manage their frequently used code snippets.
- Host: GitHub
- URL: https://github.com/renatorrocha/my-snippets
- Owner: renatorrocha
- Created: 2024-03-14T20:48:53.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2024-03-19T21:25:07.000Z (about 1 year ago)
- Last Synced: 2025-01-28T22:27:17.535Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 223 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Snippets
The "My Snippets" is a web application designed to help developers organize and manage their frequently used code snippets. Whether you’re a seasoned programmer or just starting out, this app streamlines your workflow by providing a central place to store, retrieve, and share code snippets.
## Screenshot

## Tech Stack
**FrontEnd:** React, Next.js, Tailwind Css, Monaco Editor, Next Themes, Shadcn/ui
**Backend:** Prisma, Zod, Node
## Run Locally
Clone the project
```bash
git clone https://github.com/renatorrocha/my-snippets
```Go to the project directory
```bash
cd my-snippets
```Install dependencies
```bash
npm install
```Initialize Prisma types
```bash
npx prisma generate
```Apply all migrations
```bash
npx prisma migrate deploy
```Start the server
```bash
npm run dev
```