You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
Copy file name to clipboardexpand all lines: docs/content/doc/advanced/hacking-on-gitea.en-us.md
+8
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,14 @@ TAGS="bindata sqlite sqlite_unlock_notify" make build
93
93
94
94
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.
95
95
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
+
96
104
### Formatting, code analysis and spell check
97
105
98
106
Our continuous integration will reject PRs that are not properly formatted, fail
0 commit comments