build:配置环境变量并禁用平台检查

- 在 composer.json 中添加 "platform-check": false 配置项,禁用平台兼容性检查
- 新增 .env copy.example 文件,包含应用调试和数据库连接等环境变量配置示例
master
Tuzki 7 months ago
parent aaf6097daf
commit 3bd02a1a93
  1. 6
      .env copy.example
  2. 3
      composer.json
  3. 8188
      front/yarn.lock

@ -3,9 +3,9 @@ APP_DEBUG = true
# mysql
DB_HOST = 127.0.0.1
DB_PORT = 3306
DB_NAME =
DB_USER =
DB_PASSWORD =
DB_NAME = mp_company
DB_USER = root
DB_PASSWORD = 12580110
# 网站外网域名 例如 https://www.example.com
SITE_URL = ''

@ -65,6 +65,7 @@
"config": {
"allow-plugins": {
"easywechat-composer/easywechat-composer": true
}
},
"platform-check": false
}
}

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save