https://github.com/leerob/site
My site built with Next.js, Tailwind, and Vercel.
https://github.com/leerob/site
blog mdx nextjs portfolio postgres react tailwindcss vercel
Last synced: 5 months ago
JSON representation
My site built with Next.js, Tailwind, and Vercel.
- Host: GitHub
- URL: https://github.com/leerob/site
- Owner: leerob
- Created: 2018-12-16T18:22:37.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2025-05-05T17:34:50.000Z (5 months ago)
- Last Synced: 2025-05-12T13:13:01.126Z (5 months ago)
- Topics: blog, mdx, nextjs, portfolio, postgres, react, tailwindcss, vercel
- Language: MDX
- Homepage: https://leerob.com
- Size: 198 MB
- Stars: 7,416
- Watchers: 50
- Forks: 1,435
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- StarryDivineSky - leerob/site
README
[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fleerob%2Fsite)
# site
- **Framework**: [Next.js](https://nextjs.org/)
- **Deployment**: [Vercel](https://vercel.com)
- **Styling**: [Tailwind CSS](https://tailwindcss.com)
- **Analytics**: [Vercel Analytics](https://vercel.com/analytics)## Running Locally
This application requires Node.js v18.17+.
```bash
git clone https://github.com/leerob/site.git
cd site
pnpm install
pnpm run delete # Remove all of my notes
pnpm dev
```## Database (Optional)
Create a `.env.local` file with your `POSTGRES_URL` environment variable to store redirects.
```sql
CREATE TABLE redirects (
id SERIAL PRIMARY KEY,
source VARCHAR(255) NOT NULL,
destination VARCHAR(255) NOT NULL,
permanent BOOLEAN NOT NULL
);
```## License
1. You are free to use this code as inspiration.
2. Please do not copy it directly.
3. Crediting the author is appreciated.Please remove all of my personal information by running `pnpm run delete`.