Skip to content

Commit d77ef00

Browse files
committed
Add 'watch-backend'
This leverages `air` to watch the backend files and trigger `make backend` automatically when they change. It seems to work rather well together with `watch-frontend`. Fixes: #12318
1 parent d0c690f commit d77ef00

File tree

4 files changed

+29
-1
lines changed

4 files changed

+29
-1
lines changed

.air.conf

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = "."
2+
tmp_dir = ".air"
3+
4+
[build]
5+
cmd = "make backend"
6+
bin = "gitea"
7+
include_ext = ["go", "tmpl"]
8+
exclude_dir = ["modules/git/tests", "services/gitdiff/testdata", "modules/avatar/testdata"]
9+
include_dir = ["cmd", "models", "modules", "options", "routers", "services", "templates"]

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ coverage.all
8181
/public/fonts
8282
/web_src/fomantic/build
8383
/VERSION
84+
/.air
8485

8586
# Snapcraft
8687
snap/.snapcraft/

Makefile

+11-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,8 @@ BINDATA_HASH := $(addsuffix .hash,$(BINDATA_DEST))
106106

107107
SVG_DEST_DIR := public/img/svg
108108

109+
AIR_TMP_DIR := .air
110+
109111
TAGS ?=
110112
TAGS_SPLIT := $(subst $(COMMA), ,$(TAGS))
111113
TAGS_EVIDENCE := $(MAKE_EVIDENCE_DIR)/tags
@@ -161,6 +163,7 @@ help:
161163
@echo " - lint-frontend lint frontend files"
162164
@echo " - lint-backend lint backend files"
163165
@echo " - watch-frontend watch frontend files and continuously rebuild"
166+
@echo " - watch-backend watch backend files and continuously rebuild"
164167
@echo " - webpack build webpack files"
165168
@echo " - svg build svg files"
166169
@echo " - fomantic build fomantic files"
@@ -306,6 +309,13 @@ watch-frontend: node-check $(FOMANTIC_DEST) node_modules
306309
rm -rf $(WEBPACK_DEST_ENTRIES)
307310
NODE_ENV=development npx webpack --hide-modules --display-entrypoints=false --watch --progress
308311

312+
.PHONY: watch-backend
313+
watch-backend: go-check
314+
@hash air > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
315+
GO111MODULE=off $(GO) get -u github.com/cosmtrek/air; \
316+
fi
317+
air -c .air.conf
318+
309319
.PHONY: test
310320
test:
311321
$(GO) test $(GOTESTFLAGS) -mod=vendor -tags='sqlite sqlite_unlock_notify' $(GO_PACKAGES)
@@ -579,7 +589,7 @@ release-compress: | $(DIST_DIRS)
579589
.PHONY: release-sources
580590
release-sources: | $(DIST_DIRS) node_modules
581591
echo $(VERSION) > $(STORED_VERSION_FILE)
582-
tar --exclude=./$(DIST) --exclude=./.git --exclude=./$(MAKE_EVIDENCE_DIR) --exclude=./node_modules/.cache -czf $(DIST)/release/gitea-src-$(VERSION).tar.gz .
592+
tar --exclude=./$(DIST) --exclude=./.git --exclude=./$(MAKE_EVIDENCE_DIR) --exclude=./node_modules/.cache --exclude=./$(AIR_TMP_DIR) -czf $(DIST)/release/gitea-src-$(VERSION).tar.gz .
583593
rm -f $(STORED_VERSION_FILE)
584594

585595
.PHONY: release-docs

docs/content/doc/advanced/hacking-on-gitea.en-us.md

+8
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,14 @@ TAGS="bindata sqlite sqlite_unlock_notify" make build
9393

9494
See `make help` for all available `make` tasks. Also see [`.drone.yml`](https://github.com/go-gitea/gitea/blob/master/.drone.yml) to see how our continuous integration works.
9595

96+
To continuously watch the backend source files and rebuild when they change, you can use
97+
98+
````bash
99+
make watch-backend
100+
````
101+
102+
On macOS, watching all source files may hit the default open files limit which you can increase using `ulimit -n 12288` for the current shell or in your shell startup file for all shells.
103+
96104
### Formatting, code analysis and spell check
97105

98106
Our continuous integration will reject PRs that are not properly formatted, fail

0 commit comments

Comments
 (0)