我们致力于探索、分享和推荐最新的实用技术栈、开源项目、框架和实用工具。每天都有新鲜的开源资讯等待你的发现!
\">
ModernWMS是一个.NET开源的简易完整的仓库管理系统,目前该系统支持跨平台,一处编码多处使用!

仓库管理系统(Warehouse Management System,WMS)是一种专门设计用来优化和管理仓库运作的软件系统。它通常涵盖了从货物入库到出库整个过程的管理,以及仓库内的库存跟踪、订单处理、货物分配和管理、工作人员任务分配等功能。
Windows下载源码编译部署下载源码cd C:\wget -Uri https://gitee.com/modernwms/ModernWMS/repository/archive/master.zip -OutFile master.zipExpand-Archive -Path C:\master.zip -DestinationPath C:\
安装.NET SDK 和 NodeJS
wget -Uri https://download.visualstudio.microsoft.com/download/pr/35660869-0942-4c5d-8692-6e0d4040137a/4921a36b578d8358dac4c27598519832/dotnet-sdk-7.0.101-win-x64.exe -OutFile dotnet-sdk-7.0.101-win-x64.exe.\dotnet-sdk-7.0.101-win-x64.exe /install /quiet /norestartwget -Uri https://nodejs.org/dist/v16.13.1/node-v16.13.1-x64.msi -OutFile node-v16.13.1-x64.msimsiexec /i .\node-v16.13.1-x64.msi /passive /norestartnpm install -g yarn
编译前端和后端
md C:\ModernWMS\frontend\md C:\ModernWMS\backend\cd C:\ModernWMS-master\backenddotnet publish copy-item -path \"C:\ModernWMS-master\backend\ModernWMS\bin\Debug\net7.0\publish\\" -destination \"C:\ModernWMS\backend\\" -recursecopy-Item \"C:\ModernWMS-master\backend\ModernWMS\wms.db\" -Destination \"C:\ModernWMS\backend\\"cd C:\ModernWMS-master\frontend yarnyarn build copy-item -path \"C:\ModernWMS-master\frontend\dist\\" -destination \"C:\ModernWMS\frontend\\" -recurse
安装nginx并启动
cd C:\wget -Uri http://nginx.org/download/nginx-1.16.1.zip -OutFile nginx-1.16.1.zipExpand-Archive -Path C:\nginx-1.16.1.zip -DestinationPath C:\copy-item -path \"C:\ModernWMS\frontend\\" -destination \"C:\nginx-1.16.1\html\\" -recursecd C:\nginx-1.16.1\start nginx.execd C:\ModernWMS\backend\dotnet ModernWMS.dll --urls http://0.0.0.0:20011
预览项目运行效果
打开浏览器,进入:http://部署电脑的IP地址 初始账号: admin 密码: 1
项目运行截图
https://gitee.com/modernwms/ModernWMS
