diff options
author | Anthony Wang | 2022-07-24 10:30:15 +0800 |
---|---|---|
committer | Anthony Wang | 2022-07-24 10:30:15 +0800 |
commit | ca1b7e04ac9c4537a63bb07b0b1e6bf53733c937 (patch) | |
tree | 40e98a5fb6afc242a6f55729b8a757751c7e01f4 | |
parent | f23be080d8e758d3d820ba8784e6474b5ebb9c7f (diff) |
Clarify commands use to deploy to testing instances
-rw-r--r-- | Development.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Development.md b/Development.md index 29bcffd..ba5a421 100644 --- a/Development.md +++ b/Development.md @@ -2,11 +2,11 @@ The [repository](https://gitea.com/Ta180m/gitea) has several branches:
-* [main](https://gitea.com/Ta180m/gitea/src/branch/main) corresponds to (insert future Gitea PR). Development mainly happens on this branch.
+* [main](https://gitea.com/Ta180m/gitea/src/branch/main) corresponds to [PR #20391]. Development mainly happens on this branch.
* [feature-activitypub](https://gitea.com/Ta180m/gitea/src/branch/feature-activitypub) corresponds to [PR #19133](https://github.com/go-gitea/gitea/pull/19133) which has been merged.
All the other branches mostly contain some experimental or old code and aren't important.
-For testing, I run `TAGS="bindata sqlite sqlite_unlock_notify" make && sudo systemctl stop gitea && sudo cp gitea /usr/bin/gitea && sudo systemctl start gitea` to deploy to https://git.exozy.me/ It's not the cleanest or fastest solution but it works.
+To deploy to my testing instance at https://test.exozy.me, I run `TAGS="sqlite sqlite_unlock_notify" make watch`.
-I also have a testing instance at https://test.exozy.me.
\ No newline at end of file +For my other testing instance at https://git.exozy.me/, I run `TAGS="bindata" make && sudo systemctl stop gitea && sudo cp gitea /usr/bin/gitea && sudo systemctl start gitea`.
\ No newline at end of file |