Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 417 Bytes

README.md

File metadata and controls

22 lines (19 loc) · 417 Bytes

golpgws

Golang Webservice boilerplate

development mode

  • clone repo into local
git clone git@github.com:fajrulaulia/golpgws.git
  • check your setup base URL to DBMS PG server
export DB_URL=postgres://golpgwsuser:golpgwspass@localhost:5432/golpgwsdb?sslmode=disable
  • migrate to exec sql file to database
make local-migrate
  • Running into local
make local-run