feat: server打包、client打包、启动脚本适配windows

This commit is contained in:
谢飞
2023-04-03 14:59:57 +08:00
parent d64d25254e
commit 99ecdc5cd2
4 changed files with 36 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
@echo off
@rem console output code changed to UTF-8
chcp 65001
@rem basic params
set MODULE_NAME="neutrino-proxy-server"
set JAR_NAME="neutrino-proxy-server.jar"
set JVM_OPTS="-Xmx256m" "-Xms256m"
@rem step
cd %~dp0 && cd ../%MODULE_NAME%/target
java -jar %JVM_OPTS% %JAR_NAME%