Skip to content

Commit

Permalink
fix(api): remove no auth
Browse files Browse the repository at this point in the history
  • Loading branch information
tothandras committed Nov 5, 2024
1 parent 8c2cd63 commit 70ec384
Show file tree
Hide file tree
Showing 4 changed files with 1,085 additions and 1,052 deletions.
12 changes: 9 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,19 @@ down: ## Stop the dependencies via docker compose
$(call print-target)
docker compose down --remove-orphans --volumes

.PHONY: update-openapi
update-openapi: ## Update OpenAPI spec
$(call print-target)
dagger call --source .:default generate openapi -o ./api/openapi.yaml
go generate ./api/...

.PHONY: gen-api
gen-api: ## Generate API and SDKs
$(call print-target)
go generate ./api/...
dagger call generate node-sdk -o api/client/node
dagger call generate web-sdk -o api/client/web
dagger call generate python-sdk -o api/client/python
# dagger call generate node-sdk -o api/client/node
# dagger call generate web-sdk -o api/client/web
# dagger call generate python-sdk -o api/client/python

.PHONY: migrate-check
migrate-check: ## Validate migrations
Expand Down
Loading

0 comments on commit 70ec384

Please sign in to comment.