/simple-bank-BS

Primary LanguageGoMIT LicenseMIT

simple-bank-BS

(Simple Bank Backend System)

Resources used:

dbdiagram.io

hub.docker.com

tableplus.com

Notes:

  1. To check ports in use on linux:
$ sudo lsof -i -P -n | grep LISTEN
  1. To create db migrations:
migrate create -ext sql -dir db/migration -seq init_schema
  1. To migrate db:
migrate -path db/migration -database "postgresql://root:secret@localhost:5435/simple_bank?sslmode=disable" -verbose up