12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- const CONF = {
- serverHost: 'localhost',
- tunnelServerUrl: '',
- tunnelSignatureKey: '',
- // 腾讯云相关配置可以查看云 API 密钥控制台:https://console.cloud.tencent.com/capi
- qcloudAppId: '',
- qcloudSecretId: '',
- qcloudSecretKey: '',
- wxMessageToken: '',
- networkTimeout: 30000,
- port: '5757',
- rootPathname: '',
- // 微信小程序 App ID
- appId: '',
- // 微信小程序 App Secret
- appSecret: '',
- // 是否使用腾讯云代理登录小程序
- useQcloudLogin: false,
- /**
- * MySQL 配置,用来存储 session 和用户信息
- * 若使用了腾讯云微信小程序解决方案
- * 开发环境下,MySQL 的初始密码为您的微信小程序 appid
- */
- mysql: {
- host: 'localhost',
- port: 3306,
- user: 'root',
- db: 'cAuth',
- pass: 'root',
- char: 'utf8mb4'
- },
- cos: {
- /**
- * 地区简称
- * @查看 https://cloud.tencent.com/document/product/436/6224
- */
- region: 'ap-guangzhou',
- // Bucket 名称
- fileBucket: 'qcloudtest',
- // 文件夹
- uploadFolder: ''
- },
- // 微信登录态有效期
- wxLoginExpires: 7200
- // wxMessageToken: 'abcdefgh'
- }
- module.exports = CONF
|