资源服务

shao a26eea56ad submodule update 2 tuần trước cách đây
cmd de59f229e3 grpc改造 2 tuần trước cách đây
common a26eea56ad submodule update 2 tuần trước cách đây
config a26eea56ad submodule update 2 tuần trước cách đây
logger de59f229e3 grpc改造 2 tuần trước cách đây
models de59f229e3 grpc改造 2 tuần trước cách đây
rpc_idl @ 9dd27d243c a26eea56ad submodule update 2 tuần trước cách đây
service de59f229e3 grpc改造 2 tuần trước cách đây
static de59f229e3 grpc改造 2 tuần trước cách đây
.gitignore 91fc9d0cbe first commit 2 tuần trước cách đây
.gitmodules a26eea56ad submodule update 2 tuần trước cách đây
Makefile 400350a698 init config_items table 2 tuần trước cách đây
README.md be26042e4a 避免明文存储数据库密码 2 tuần trước cách đây
go.mod a26eea56ad submodule update 2 tuần trước cách đây
go.sum a26eea56ad submodule update 2 tuần trước cách đây
main.go 91fc9d0cbe first commit 2 tuần trước cách đây

README.md

DR Resource Server

env

  • golang 1.24
  • postgres14

run

go run main.go run

deploy

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

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

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