Dev Forum is an online platform where software developers can showcase their portfolios, bid on projects, and connect with recruiters to get hired.
- Next.js 14 (App Router)
- Shadcn/UI
- Tailwind CSS
- Prisma/Postgres
git clone https://github.com/saifulshihab/dev-forum.git
cd dev-forumnpm installThere is an .env.example file. Copy it to .env.
cp .env.example .envOpen .env and set all necessary values.
- Generate the Prisma client:
npx prisma generate- Run migrations (if any) to set up database schema:
npx prisma migrate deployor (for development)
npx prisma migrate dev- For development mode:
npm run dev- For production build:
npm run build
npm start