Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ up: ## Build and start the app containers
down: ## Stop and remove app containers
@docker compose down

.PHONY: seed
seed: ## Seed users, channels, messages, and stamps into the database
docker compose run --rm --entrypoint ./traQ backend seed

.PHONY: gogen
gogen: ## Generate auto-generated go files
go generate ./...
1 change: 1 addition & 0 deletions cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ func init() {
stampCommand(),
versionCommand(),
healthcheckCommand(),
seedCommand(),
)

flags := rootCommand.PersistentFlags()
Expand Down
Loading
Loading