DR Protocol Server

shao 09b57c5394 first commit 1 tuần trước cách đây
cmd 09b57c5394 first commit 1 tuần trước cách đây
common 09b57c5394 first commit 1 tuần trước cách đây
config 09b57c5394 first commit 1 tuần trước cách đây
logger 09b57c5394 first commit 1 tuần trước cách đây
models 09b57c5394 first commit 1 tuần trước cách đây
rpc_idl @ 41e78dbf6c 09b57c5394 first commit 1 tuần trước cách đây
service 09b57c5394 first commit 1 tuần trước cách đây
static 09b57c5394 first commit 1 tuần trước cách đây
.gitignore 09b57c5394 first commit 1 tuần trước cách đây
.gitmodules 09b57c5394 first commit 1 tuần trước cách đây
Makefile 09b57c5394 first commit 1 tuần trước cách đây
README.md 09b57c5394 first commit 1 tuần trước cách đây
go.mod 09b57c5394 first commit 1 tuần trước cách đây
go.sum 09b57c5394 first commit 1 tuần trước cách đây
main.go 09b57c5394 first commit 1 tuần trước cách đây

README.md

DR Protocol Server

env

  • golang 1.24
  • postgres14

run

go run main.go run

deploy

# vim /etc/systemd/system/protocol-server.service
[Unit]
Description=dr protocol service
After=network.target
 
[Service]
Type=simple
WorkingDirectory=xxx/DRProtocolServer
ExecStart=xxx/DRProtocolServer/protocol-server run
 
[Install]
WantedBy=multi-user.target

# 重新加载systemd配置
sudo systemctl daemon-load

# 启动服务
sudo systemctl restart protocol-server.service