Skip to content

mayuka-c/bank-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bank Application using Go

PostGres installation

docker pull postgres:16-alpine
docker run --name dev-postgres16 -e POSTGRES_USER=root -e POSTGRES_PASSWORD=mysecretpassword -e POSTGRES_DB=bank-app -d -p 5432:5432 postgres:16-alpine
docker exec -it <container-id> psql -U <dbname> <dbUser>

DB migration

# uses golang-migrate
migrate create -ext sql -dir db/migration -seq init_schema

About

Basic Bank application using Golang

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published