spongebin
a pastebin for code snippets; rendered with shiki and monaco editor
## setup
> [!NOTE]
> you need a [neon](https://neon.tech/) database to run this project
1. clone the repo
2. install the dependencies
```bash
bun install
```
3. create a `.env` file in the root directory and add the following variables
```bash
DATABASE_URL="postgres://"
```
4. run the migrations
```bash
bunx drizzle-kit generate
bunx drizzle-kit migrate
```
5. run the app
```bash
bun dev
```
6. enjoy 🎉