资源服务

shao ffc696bbc1 options vor 1 Tag
cmd bc75299535 patient_type vor 2 Wochen
common ffc696bbc1 options vor 1 Tag
config ffc696bbc1 options vor 1 Tag
logger de59f229e3 grpc改造 vor 3 Wochen
models bc75299535 patient_type vor 2 Wochen
rpc_idl @ 095f02566c bb18ce9554 options vor 1 Tag
service bb18ce9554 options vor 1 Tag
static de59f229e3 grpc改造 vor 3 Wochen
.gitignore 91fc9d0cbe first commit vor 3 Wochen
.gitmodules a26eea56ad submodule update vor 3 Wochen
Makefile 400350a698 init config_items table vor 3 Wochen
README.md be26042e4a 避免明文存储数据库密码 vor 3 Wochen
go.mod bc75299535 patient_type vor 2 Wochen
go.sum de50521992 MWL_Modality vor 3 Wochen
main.go 91fc9d0cbe first commit vor 3 Wochen

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