aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorLunny Xiao2022-12-27 14:00:34 +0800
committerGitHub2022-12-27 14:00:34 +0800
commit90237d8abd0e6479c1464ac0f32fff6a2ce4a0b4 (patch)
tree1fc0f8b8e4f2cc60c67a078af0e09baacdc46bb7 /Makefile
parentb48cf03717e99ff33d1e845c97e6f8c469cd2e6d (diff)
Add more test directory to exclude dir of air, remove watching templates from air include dir because gitea has internal mechanism (#22246)
Since #20218 introduced internal watching template, template watching should be removed from `air`. This will prevent restart the whole server once the template files changed to speed up developing when using `make watch`. To ensure `make watch` will reuse template watching, this PR introduced a new ENV `GITEA_RUN_MODE` to make sure `make watch` will always run in a dev mode of Gitea so that template watching will open. This PR also added more exclude testdata directories.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d1122984a..06a0d1c18 100644
--- a/Makefile
+++ b/Makefile
@@ -359,7 +359,7 @@ watch-frontend: node-check node_modules
.PHONY: watch-backend
watch-backend: go-check
- $(GO) run $(AIR_PACKAGE) -c .air.toml
+ GITEA_RUN_MODE=dev $(GO) run $(AIR_PACKAGE) -c .air.toml
.PHONY: test
test: test-frontend test-backend