12345678910111213141516171819202122232425262728 |
- .PHONY: init
- init:
- go install github.com/google/wire/cmd/wire@latest
- go install github.com/nicksnyder/go-i18n/v2/goi18n@latest
- chmod +x ./deploy/restart.sh
- chmod +x ./deploy/shutdown.sh
- chmod +x ./deploy/startup.sh
- chmod +x ./deploy/status.sh
- .PHONY: wire
- wire:
- cd cmd/wire && wire
- .PHONY: restart
- restart:
- sh ./deploy/restart.sh
- .PHONY: shutdown
- shutdown:
- sh ./deploy/shutdown.sh
- .PHONY: startup
- startup:
- sh ./deploy/startup.sh
- .PHONY: status
- status:
- sh ./deploy/status.sh
|