Skip to content

Commit

Permalink
Merge branch 'main' into henrikth93-docker-tooling-scribe-org#7
Browse files Browse the repository at this point in the history
  • Loading branch information
wkyoshida committed Feb 25, 2024
2 parents 166069e + cf62182 commit 2b05331
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
14 changes: 12 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: clean build test run fmt tidy install-tools generate execute-binary
.PHONY: clean build test run fmt tidy install-tools generate generate-api generate-db execute-binary

BINARY_NAME=./bin/scribe-server

Expand Down Expand Up @@ -35,7 +35,17 @@ install-tools:

# Create or update the generated source code.
generate:
go generate -x ./...
@$(MAKE) generate-api
@$(MAKE) generate-db

# Create or update the generated source code for the 'api' package.
generate-api:
go generate -x ./api/...
@$(MAKE) tidy

# Create or update the generated source code for the 'db' package.
generate-db:
go generate -x ./db/...
@$(MAKE) tidy

# Execute the binary for the project.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ The following table shows the supported languages and the amount of data availab

<strong>2024</strong>

- Feb: [Presentation slides](https://docs.google.com/presentation/d/1lMhYiQx1R99SVGhbikUGjOVaFgPPASvbzM2Bsu3NXSg/edit?usp=sharing) for Scribe's participation at the [Wikimedia Tech Safari Program](https://www.mediawiki.org/wiki/Wikimedia_Tech_Safari_Program)
- February: [Presentation slides](https://docs.google.com/presentation/d/1lMhYiQx1R99SVGhbikUGjOVaFgPPASvbzM2Bsu3NXSg/edit?usp=sharing) for Scribe's participation at the [Wikimedia Tech Safari Program](https://www.mediawiki.org/wiki/Wikimedia_Tech_Safari_Program)

<strong>2023</strong>

Expand Down

0 comments on commit 2b05331

Please sign in to comment.