This is a blog project using React, Next.js.
I wanted to make a blog that I could write and publish easily. So I made this project.
Feel free to use this project as you like. and if you have any questions, please leave a issue.
- Clone this repository
git clone https://github.com/JHSeo-git/blog.seonest.net.git my-blog
cd my-blog
- Install dependencies
pnpm install
- Edit .env file
copy .env.example to .env and edit it.
# supabase
# Connect to Supabase via connection pooling with Supavisor.
SUPABASE_DATABASE_URL="postgres://postgres.../postgres?schema=preview&pgbouncer=true&connection_limit=1"
# Direct connection to the database. Used for migrations.
DIRECT_URL="postgres://postgres.../postgres?schema=preview&pgbouncer=true&connection_limit=1"
- Run dev server.
pnpm dev