go.charczuk.com@v0.0.0-20240327042549-bc490516bd1a/projects/kana-server/Makefile (about)

     1  run:
     2  	@go run main.go
     3  
     4  run-reload:
     5  	@reflex -s -- go run main.go
     6  
     7  db:
     8  	@go run main.go --db-setup=true --db-migrate=true --start=false
     9  
    10  migrate:
    11  	@go run main.go --db-setup=false --db-migrate=true --start=false
    12  
    13  ensure-reflex:
    14  	@go install github.com/cespare/reflex@latest