This application requires Node.js v18.17+.
git clone https://github.com/leerob/site.git
cd site
pnpm install
pnpm run delete # Remove all of my notes
pnpm dev
Create a .env.local
file with your POSTGRES_URL
environment variable to store redirects.
CREATE TABLE redirects (
id SERIAL PRIMARY KEY,
source VARCHAR(255) NOT NULL,
destination VARCHAR(255) NOT NULL,
permanent BOOLEAN NOT NULL
);
Please remove all of my personal information by running pnpm run delete
.