Skip to content

Commit 0bde45a

Browse files
authoredFeb 19, 2024··
chore: go-gin service configuration (#12)
* Update go-gin.plist configuration file * Update RestartSec in go-gin.service * Update go-gin service configuration * Update GG_REPO_BRANCH in install.sh * Add instructions for running as a service on Linux
1 parent 81e9ea0 commit 0bde45a

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed
 

‎README.md

+10
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,16 @@ You can pull the source code to compile the binary executable file yourself, or
211211

212212
**Note:** Please make sure that executable permissions have been set before running. If there are no executable permissions, you can set them through the `chmod +x go-gin` command.
213213

214+
## Run as Service
215+
216+
### Linux (systemd)
217+
218+
In Linux, services are managed through Systemd. You can use the following commands to install, start, stop, restart, log, and view the status of services, etc.
219+
220+
```bash
221+
bash -c "$(curl -fsSL https://raw.githubusercontent.com/funnyzak/go-gin/main/script/install.sh)"
222+
```
223+
214224
## License
215225

216226
MIT License

‎script/go-gin.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<array>
1010
<string>/opt/go-gin/go-gin</string>
1111
<string>-c</string>
12-
<string>/opt/go-gin/config.yaml</string>
12+
<string>go-gin</string>
1313
</array>
1414
<key>KeepAlive</key>
1515
<true/>

‎script/go-gin.service

+1-4
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,8 @@ Description=go-gin service
33
After=syslog.target
44

55
[Service]
6-
Type=simple
7-
User=nobody
8-
Group=nogroup
96
Restart=on-failure
10-
RestartSec=30s
7+
RestartSec=10s
118
WorkingDirectory=/opt/go-gin
129
ExecStart=/opt/go-gin/go-gin -c go-gin
1310

‎script/install.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ GG_DESCRIPTION="Go-Gin is a web service based on Golang and Gin framework." # se
1818

1919
GG_NAME="go-gin" # service name
2020
GG_REPO_NAME="funnyzak/${GG_NAME}" # service repo name
21-
GG_REPO_BRANCH="installsrcipt" # service repo branch
21+
GG_REPO_BRANCH="main" # service repo branch
2222

2323
GG_SERVICE_NAME="${GG_NAME}" # service system name
2424
GG_WORK_PATH="/opt/${GG_SERVICE_NAME}" # service workdir path
@@ -279,7 +279,7 @@ show_service_log() {
279279
fi
280280

281281
echo -e "Press ${red}Ctrl+C${plain} to exit."
282-
watch -n 1 tail -n 20 $(get_service_log_path)
282+
watch -n 1 tail -n 20 "$(get_service_log_path)"
283283

284284
if [[ $# == 0 ]]; then
285285
before_show_menu

0 commit comments

Comments
 (0)
Please sign in to comment.