This commit is contained in:
1123
2026-04-28 10:38:23 +08:00
parent 38cb9345d6
commit 7f2036fbb2
19 changed files with 60 additions and 72 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/backend/venv/

View File

@@ -1,8 +1,8 @@
{ {
"host": "192.168.2.183", "host": "127.0.0.1",
"port": 3308, "port": 3306,
"user": "root", "user": "root",
"password": "rootroot", "password": "123456",
"database": "spam_nb_miniapp", "database": "spam_nb_miniapp",
"charset": "utf8mb4", "charset": "utf8mb4",
"admin_init": { "admin_init": {

View File

@@ -1,17 +0,0 @@
{
"host": "127.0.0.1",
"port": 3306,
"user": "root",
"password": "pk123123",
"database": "spam_nb_miniapp",
"charset": "utf8mb4",
"admin_init": {
"create_default_admin": true,
"username": "admin",
"password": "Admin@123456",
"nickname": "系统管理员"
},
"detection_init": {
"spam_threshold": 0.75
}
}

View File

@@ -1,35 +1,39 @@
{ {
"setting": { "setting": {
"es6": true, "es6": true,
"postcss": true, "postcss": true,
"minified": true, "minified": true,
"uglifyFileName": false, "uglifyFileName": false,
"enhance": true, "enhance": true,
"packNpmRelationList": [], "packNpmRelationList": [],
"babelSetting": { "babelSetting": {
"ignore": [], "ignore": [],
"disablePlugins": [], "disablePlugins": [],
"outputPath": "" "outputPath": ""
}, },
"useCompilerPlugins": false, "useCompilerPlugins": false,
"minifyWXML": true, "minifyWXML": true,
"compileWorklet": false, "compileWorklet": false,
"uploadWithSourceMap": true, "uploadWithSourceMap": true,
"packNpmManually": false, "packNpmManually": false,
"minifyWXSS": true, "minifyWXSS": true,
"localPlugins": false, "localPlugins": false,
"disableUseStrict": false, "disableUseStrict": false,
"condition": false, "condition": false,
"swc": false, "swc": false,
"disableSWC": true "disableSWC": true
}, },
"compileType": "miniprogram", "compileType": "miniprogram",
"simulatorPluginLibVersion": {}, "simulatorPluginLibVersion": {},
"packOptions": { "packOptions": {
"ignore": [], "ignore": [],
"include": [] "include": []
}, },
"appid": "wx42ba28b8e545ba14", "appid": "wx42ba28b8e545ba14",
"editorSetting": {}, "editorSetting": {
"libVersion": "3.15.0" "tabIndent": "tab",
"tabSize": 4
},
"libVersion": "3.15.0",
"condition": {}
} }

View File

@@ -1,21 +1,21 @@
{ {
"libVersion": "3.15.0", "libVersion": "3.15.0",
"projectname": "miniprogram", "projectname": "miniprogram",
"setting": { "setting": {
"urlCheck": true, "urlCheck": false,
"coverView": true, "coverView": true,
"lazyloadPlaceholderEnable": false, "lazyloadPlaceholderEnable": false,
"skylineRenderEnable": false, "preloadBackgroundData": false,
"preloadBackgroundData": false, "autoAudits": false,
"autoAudits": false, "showShadowRootInWxmlPanel": true,
"showShadowRootInWxmlPanel": true, "compileHotReLoad": true,
"compileHotReLoad": true, "useApiHook": true,
"useApiHook": true, "useStaticServer": false,
"useStaticServer": false, "useLanDebug": false,
"useLanDebug": false, "showES6CompileOption": false,
"showES6CompileOption": false, "checkInvalidKey": true,
"checkInvalidKey": true, "ignoreDevUnusedFiles": true,
"ignoreDevUnusedFiles": true, "bigPackageSizeSupport": false
"bigPackageSizeSupport": false },
} "description": "项目私有配置文件。此文件中的内容将覆盖 project.config.json 中的相同字段。项目的改动优先同步到此文件中。详见文档https://developers.weixin.qq.com/miniprogram/dev/devtools/projectconfig.html"
} }