Lilishop商城(windows)本地部署【docker版】

Lilishop商城(windows)本地部署【docker版】

部署官方文档:LILISHOP-开发者中心
https://gitee.com/beijing_hongye_huicheng/lilishop

本地安装docker

https://docs.pickmall.cn/deploy/win/deploy.html
命令端页面
image.png
启动后docker界面
image.png
注:关闭本地的mysql80才能启动docker中的mysql
image.png

前端启动

gitee地址:https://gitee.com/dd2323/lilishop-uiiii.git
命令行执行一下命令

@echo off
echo Setting Yarn registry...
yarn config set registry https://registry.npm.taobao.org --global

echo Setting Yarn disturl...
yarn config set disturl https://npm.taobao.org/dist --global

echo Setting Yarn sass_binary_site...
yarn config set sass_binary_site http://cdn.npm.taobao.org/dist/node-sass --global
#清除npm缓存
npm cache clean --force
#取消ssl证书验证
yarn config set "strict-ssl" false -g

cd ./buyer
echo buyer...
yarn install

cd ../
cd ./manager
echo manager...
yarn install

cd ../
cd ./seller
echo seller...
yarn install

echo Script execution completed.

更改api端口

API_DEV: {
    common: "http://127.0.0.1:8890",
    buyer: "http://127.0.0.1:8888",
    seller: "http://127.0.0.1:8889",
    manager: "http://127.0.0.1:8887"
  },
  API_PROD: {
    common: "http://127.0.0.1:8890",
    buyer: "http://127.0.0.1:8888",
    seller: "http://127.0.0.1:8889",
    manager: "http://127.0.0.1:8887"
  },

继续更新后端启动的步骤和移动端启动的步骤

相关推荐

  1. Docker部署oracle快捷

    2024-03-31 13:08:02       38 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-03-31 13:08:02       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-03-31 13:08:02       100 阅读
  3. 在Django里面运行非项目文件

    2024-03-31 13:08:02       82 阅读
  4. Python语言-面向对象

    2024-03-31 13:08:02       91 阅读

热门阅读

  1. 关系型数据库和非关系型数据库介绍

    2024-03-31 13:08:02       41 阅读
  2. JVM面试题(二)

    2024-03-31 13:08:02       36 阅读
  3. 当代深度学习模型介绍--长短期记忆网络(LSTMs)

    2024-03-31 13:08:02       41 阅读
  4. 鸿蒙4.0和鸿蒙Next有什么区别?

    2024-03-31 13:08:02       42 阅读
  5. 数据仓库的作用和价值

    2024-03-31 13:08:02       46 阅读
  6. 深入理解与使用go之函数与方法--泛型及堆栈

    2024-03-31 13:08:02       39 阅读
  7. 【AIGC】阿里云ecs部署stable diffusion

    2024-03-31 13:08:02       39 阅读
  8. Lua与Python区别

    2024-03-31 13:08:02       36 阅读