-
rubix-point-server下载
资源介绍
Rubix点服务器
在开发中运行
用来管理依赖
安装简单的脚本
./setup.sh
加入venv
poetry shell
构建本地二进制文件
poetry run pyinstaller run.py -n rubix-point --clean --onefile \
--add-data VERSION:. \
--add-data config:config
输出为: dist/rubix-point
Docker构建
建造
./docker.sh
输出图像是: rubix-point:dev
跑
docker volume create rubix-point-data
docker run --rm -it -p 1515:1515 -v rubix-point-data:/data --name rubix-point rubix-point:dev
在