Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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 days 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 (about 6 years ago)
- Default Branch: main
- Last Pushed: 2024-10-23T14:59:03.000Z (about 2 months ago)
- Last Synced: 2024-10-29T09:51:29.303Z (about 2 months ago)
- Topics: blog, mdx, nextjs, portfolio, postgres, react, tailwindcss, vercel
- Language: MDX
- Homepage: https://leerob.com
- Size: 197 MB
- Stars: 7,182
- Watchers: 49
- Forks: 1,398
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fleerob%2Fsite)
# site
- **Framework**: [Next.js](https://nextjs.org/)
- **Database**: [Postgres](https://vercel.com/postgres)
- **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
bun install
bun run delete # Remove all of my notes
bun dev
```Optional: Create a `.env.local` file with your `POSTGRES_URL` environment variable to store redirects.
## Database Schema
```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 `bun run delete`.