-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: don’t embed resources We don’t need to ship a binary, we can ship the built files. * fix: cel references * Remove CEL dependencies * fix: make tests runnable, albeit mostly skipped. * chore: add links to issues for CEL translation * fix: adjust makefile
- Loading branch information
Showing
8 changed files
with
87 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,7 @@ test: fmt ## Run tests. | |
|
||
.PHONY: serve | ||
serve: build ## Serve static files. | ||
go run cmd/server/main.go | ||
go run cmd/server/main.go --dir web/ | ||
|
||
.PHONY: update-data | ||
update-data: ## Update the web/assets/data.json file. | ||
|
@@ -36,12 +36,12 @@ update-data: ## Update the web/assets/data.json file. | |
.PHONY: addlicense | ||
addlicense: ## Add copyright license headers in source code files. | ||
@test -s $(LOCALBIN)/addlicense || GOBIN=$(LOCALBIN) go install github.com/google/addlicense@latest | ||
$(LOCALBIN)/addlicense -c "Undistro Authors; Fork and conversion to Expr by Peter Olds <[email protected]>" -l "apache" -ignore ".github/**" -ignore ".idea/**" -ignore "web/dist/**" . | ||
$(LOCALBIN)/addlicense -c "Undistro Authors; Peter Olds" -l "apache" -ignore ".github/**" -ignore ".idea/**" -ignore "web/dist/**" . | ||
|
||
.PHONY: checklicense | ||
checklicense: ## Check copyright license headers in source code files. | ||
@test -s $(LOCALBIN)/addlicense || GOBIN=$(LOCALBIN) go install github.com/google/addlicense@latest | ||
$(LOCALBIN)/addlicense -c "Undistro Authors; Fork and conversion to Expr by Peter Olds <[email protected]>" -l "apache" -ignore ".github/**" -ignore ".idea/**" -ignore "web/dist/**" -check . | ||
$(LOCALBIN)/addlicense -c "Undistro Authors; Peter Olds" -l "apache" -ignore ".github/**" -ignore ".idea/**" -ignore "web/dist/**" -check . | ||
|
||
##@ Build | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.