Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 467 Bytes

README.md

File metadata and controls

24 lines (23 loc) · 467 Bytes

PickABlog

RESTful API system blog using Golang Fiber

Setup Development

  1. Install/Update/Delete packages, run :
    $ make deps
    
  2. Creating docker container postgresql & redis, run :
    $ make postup && make redsup
    
  3. Create new databases, run :
    $ make dbup
    
  4. Migrate table, run :
    $ make migrate up
    
  5. Finally run based on mode (local/http) :
    $ make run local