Skip to content

nikitsenka/bank-go

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Quick Start ##Build

  go build -o bin/bank ./bank/ 

##Run Application locally

  export PORT=8000
  chmod 500 ./bin/bank
  ./bin/bank

##Run DB locally

  docker build --no-cache -t bank-postgres ./docker/db/
  docker run --name bank-postgres -p 5432:5432 -e POSTGRES_PASSWORD=test1234 -d bank-postgres

##Test

  curl -X POST http://localhost:8000/client/new/100 
  {"id":1,"name":"","email":"","phone":""}

About

Sample bank application written on Go

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •