Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 709 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 709 Bytes

Simple Full-Stack CRUD with Next.js 14, PostgreSQL, and Prisma

This is an implementation of CRUD with Next.js 14. A blog about this can be found here: Simple Full-Stack CRUD with Next.js 14, PostgreSQL, and Prisma | Fajarwz.

Configuration

Create .env file from .env.example

cp .env.example .env

Database Integration

  1. Open .env file
  2. Create a database and connect it with Next.js by adjusting the DATABASE_URL with your own configuration

Migrate the Database Migration

npx prisma db push

Installation

Node Packages

npm install

Run App

npm run dev