Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 344 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 344 Bytes

Getting Started

Setup

  1. Run postgres docker container:
docker run --name docker-postgres -p 5432:5432 -e POSTGRES_PASSWORD=postgres -d postgres
  1. Manually create a new database test-db

  2. Run generation SQL migration command:

npm run db:generate
  1. Run database migration script:
npm run db:migrate