商城接口项目集群(后端)
Go to file
2025-03-07 23:01:23 +08:00
mall-account 删除多余的文件 2025-03-06 17:04:57 +08:00
mall-admin Update .gitignore 2025-03-04 23:41:47 +08:00
mall-auth Update .gitignore 2025-03-04 23:41:47 +08:00
mall-cms Update .gitignore 2025-03-04 23:41:47 +08:00
mall-common 增加百度提示接口 2025-03-07 23:01:23 +08:00
mall-gateway Update .gitignore 2025-03-04 23:41:47 +08:00
mall-im Update .gitignore 2025-03-04 23:41:47 +08:00
mall-pay Update .gitignore 2025-03-04 23:41:47 +08:00
mall-search Update .gitignore 2025-03-04 23:41:47 +08:00
mall-shop 增加百度提示接口 2025-03-07 23:01:23 +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 商家入驻接口开发 2025-02-23 12:35:37 +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

找到日志文件,清空: #find . -name "*.log" -type f -exec rm -rf {} ; cat /dev/null > 日志文件名