fix: 同步增加 env 配置支持

This commit is contained in:
邹景立 2024-08-08 23:47:39 +08:00
parent 82d71bb1ff
commit a55067fd8f
4 changed files with 34 additions and 8 deletions

13
.env.example Normal file
View File

@ -0,0 +1,13 @@
[mysql]
hostname=127.0.0.1
database=admin_dv
username=root
password=root
hostport=3306
prefix=
[redis]
host=127.0.0.1
password=""
port=6379
select=0

View File

@ -34,5 +34,10 @@
"allow-plugins": {
"zoujingli/think-install": true
}
},
"scripts": {
"post-autoload-dump": [
"@php -r \"file_exists('.env.example') && !file_exists('.env') && copy('.env.example', '.env');\""
]
}
}

View File

@ -19,7 +19,7 @@ return [
'default' => 'file',
// 缓存连接配置
'stores' => [
'file' => [
'file' => [
// 驱动方式
'type' => 'File',
// 缓存保存目录
@ -33,7 +33,7 @@ return [
// 序列化机制
'serialize' => [],
],
'safe' => [
'safe' => [
// 驱动方式
'type' => 'File',
// 缓存保存目录
@ -47,5 +47,13 @@ return [
// 序列化机制
'serialize' => [],
],
'redis' => [
// 驱动方式
'type' => 'redis',
'host' => env('redis.host', '127.0.0.1'),
'port' => env('redis.port', 6379),
'select' => env('redis.select', 0),
'password' => env('redis.password', ''),
]
],
];

View File

@ -29,21 +29,21 @@ return [
// 数据库类型
'type' => 'mysql',
// 服务器地址
'hostname' => '127.0.0.1',
'hostname' => env('mysql.hostname', '127.0.0.1'),
// 数据库名
'database' => 'admin_v6',
'database' => env('mysql.database', 'thinkadmin'),
// 用户名
'username' => 'admin_v6',
'username' => env('mysql.username', 'thinkadmin'),
// 密码
'password' => 'FbYBHcWKr2',
'password' => env('mysql.password', 'thinkadmin'),
// 端口
'hostport' => '3306',
'hostport' => env('mysql.hostport', '3306'),
// 数据库连接参数
'params' => [],
// 数据库编码默认采用 utf8
'charset' => 'utf8mb4',
// 数据库表前缀
'prefix' => '',
'prefix' => env('mysql.prefix', ''),
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
'deploy' => 0,
// 数据库读写是否分离 主从式有效