商城接口项目集群(后端)
Go to file
2025-05-20 18:11:55 +08:00
mall-account ocr 调试,todo 2025-05-08 00:35:12 +08:00
mall-admin ocr 调试,todo 2025-05-08 00:35:12 +08:00
mall-auth 商家后台登录bug修复 2025-04-07 08:29:30 +08:00
mall-cms Update .gitignore 2025-03-04 23:41:47 +08:00
mall-common 分账业务申请和异步通知方法 修复 2025-05-20 17:04:47 +08:00
mall-gateway shop 项目增加拉卡拉的业务逻辑 2025-04-24 17:38:12 +08:00
mall-im im项目添加长度 2025-05-20 18:11:55 +08:00
mall-pay 回归测试,bug修改 2025-05-18 03:51:21 +08:00
mall-search Update .gitignore 2025-03-04 23:41:47 +08:00
mall-shop 分账业务申请和异步通知方法 修复 2025-05-20 17:04:47 +08:00
mall-sns Update .gitignore 2025-03-04 23:41:47 +08:00
.gitignore 更新了 gitignore 文件配置,忽略一些idea配置文件 2025-03-04 23:46:03 +08:00
pom.xml 拉卡拉分账调试修正 2025-02-08 00:00:34 +08:00
README.MD 商家后台登录bug修复 2025-04-08 09:08:08 +08:00

项目启动顺序: mall-gateway mall-auth mall-account mall-admin mall-shop mall-sns mall-pay mall-cms mall-search mall-im

微信支付配置 { "mchid": 商户ID, "key": "商户API秘钥", "wechat_app_id": "公众号开发者ID", "wechat_app_secret": "公众号开发者密码", "wechat_xcx_app_id": "小程序开发者ID", "wechat_xcx_app_secret": "小程序开发者秘钥", "weixin_app_id": "开放平台移动应用开发者ID", "weixin_app_key": "开放平台移动应用开发者密钥", "weixin_mchid": 商户ID, "weixin_key": "商户API秘钥", "apiclient_cert": "apiclient_cert.pem", "sslkey_name": "apiclient_key.pem" }

清除 docker 日志 docker ps -aq | xargs docker inspect --format='{{.LogPath}}' | xargs truncate -s 0

查看哪个文件夹占空间 du -sh * | sort -h

cd /data/docker/overlay2 查看哪个文件夹占空间 du -sh * | sort -h

进入到 大文件的目录下,执行以下脚本 for file in log; do cat /dev/null > "$file" done

或者递归删除log 文件 find overlay2 -type f -name ".log." -print0 | xargs -0 -I {} cat /dev/null > {}