Nextjs CRUD with PostgreSQL and Typescript with Semantic UI
Nextjs PostgreSQL CRUD
This is a web application CRUD using Nextjs, Typescript and Pg (npm module) driver for PostgreSQL, and for style the interface this project is using semantic-ui-react.
Requeriments
In order to execute this project you must have:
- Nodejs installed
- Postgresql, You need postgresql running, you can see the sql table, in
/database/db.sql
Installation
git clone https://github.com/FaztWeb/nextjs-postgres-crud-typescript
cd nextjs-postgres-crud-typescript
npm install
npm run dev
PostgreSQL with Docker
In my case I’m using postgresql and PgAdmin trough docker-compose. You use it with this command:
docker-compose app
and then you can visit: http://localhost:80 to see the interface
Read the docker-compose file to know more.