添加统一开发环境配置

This commit is contained in:
2025-10-16 18:37:11 +08:00
parent 18fd62568c
commit d51b2319dc
7 changed files with 1934 additions and 9 deletions

1
.gitignore vendored
View File

@@ -54,3 +54,4 @@ TestResult.xml
nunit-*.xml nunit-*.xml
.idea/ .idea/
.volumes/

View File

@@ -38,7 +38,7 @@
"VirtualHost": "/" "VirtualHost": "/"
}, },
"WxApps": { "WxApps": {
"AppID": "wx18e5b4f42773c3ec", //<2F><><EFBFBD><EFBFBD><EFBFBD>ں<EFBFBD> "AppID": "wx18e5b4f42773c3ec",
"AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758", "AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758",
"MchId": "1571608411", "MchId": "1571608411",
"MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae" "MchKey": "846b9b0ea4aa4d5ca701e2c9f0aa6dae"

View File

@@ -3,7 +3,6 @@
"Service_BaseUrl": "http://hapi.hncore.net/", "Service_BaseUrl": "http://hapi.hncore.net/",
"BaseInfoUrl": "http://www.ipkd.com/", "BaseInfoUrl": "http://www.ipkd.com/",
"NotifyUrl": "http://hapi.hncore.net/product/WxOrderCallBack", "NotifyUrl": "http://hapi.hncore.net/product/WxOrderCallBack",
//"MySql": "Server=101.200.84.129;Database=hualian_test;User=root;Password=qaz123!@#;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
"MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=123456789;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306", "MySql": "Server=127.0.0.1;Database=hualianyun;User=root;Password=123456789;Convert Zero Datetime=True;TreatTinyAsBoolean=false;port=3306",
"Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1", "Redis": "127.0.0.1:6379,password=123456,defaultDatabase=1,poolsize=1",
"Aliyun": { "Aliyun": {
@@ -43,7 +42,7 @@
"VirtualHost": "/" "VirtualHost": "/"
}, },
"WxApps": { "WxApps": {
"AppID": "wx18e5b4f42773c3ec", //<2F><><EFBFBD><EFBFBD><EFBFBD>ں<EFBFBD> "AppID": "wx18e5b4f42773c3ec",
"AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758", "AppSecret": "e35b29b1ceb3063d4337a0e5b0ee7758",
"EncodingAESKey": "XKBeQXngKx4Ijr2QbJo2cR6ydk0uhQCXyKVJzuXgdjH", "EncodingAESKey": "XKBeQXngKx4Ijr2QbJo2cR6ydk0uhQCXyKVJzuXgdjH",
"MchId": "1571608411", "MchId": "1571608411",

View File

@@ -1,5 +0,0 @@
{
"sdk": {
"version": "2.2.100"
}
}

1901
db/schemas.sql Normal file

File diff suppressed because it is too large Load Diff

24
docker-compose.yaml Normal file
View File

@@ -0,0 +1,24 @@
name: juipnet
services:
mysql:
image: mysql:8.0.21
environment:
MYSQL_ROOT_PASSWORD: 123456789
MYSQL_DATABASE: hualianyun
ports:
- "3306:3306"
volumes:
- .volumes/mysql:/var/lib/mysql
- ./sql:/docker-entrypoint-initdb.d:ro
redis:
image: redis:3.2.12
environment:
REDIS_PASSWORD: 123456
ports:
- "6379:6379"
volumes:
- .volumes/redis:/data

5
global.json Normal file
View File

@@ -0,0 +1,5 @@
{
"sdk": {
"version": "2.2.207"
}
}