Manual Setup
mainIf you prefer to manage the database and dev server manually, follow these steps:
- Clone the repository and enter the directory.
- Install dependencies using
pnpm. - Copy
.env.exampleto.envand update it with your specific database credentials. - Start the PostgreSQL container using
pnpm db:start. - Push the schema and seed data using
pnpm db:setup. - Start the Next.js development server using
pnpm dev.
git clone https://github.com/sadmann7/tablecn
cd tablecn
pnpm install
cp .env.example .env
pnpm db:start
pnpm db:setup
pnpm dev