mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
fix: 同步增加 env 配置支持
This commit is contained in:
parent
82d71bb1ff
commit
a55067fd8f
13
.env.example
Normal file
13
.env.example
Normal 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
|
@ -34,5 +34,10 @@
|
|||||||
"allow-plugins": {
|
"allow-plugins": {
|
||||||
"zoujingli/think-install": true
|
"zoujingli/think-install": true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"post-autoload-dump": [
|
||||||
|
"@php -r \"file_exists('.env.example') && !file_exists('.env') && copy('.env.example', '.env');\""
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -47,5 +47,13 @@ return [
|
|||||||
// 序列化机制
|
// 序列化机制
|
||||||
'serialize' => [],
|
'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', ''),
|
||||||
|
]
|
||||||
],
|
],
|
||||||
];
|
];
|
@ -29,21 +29,21 @@ return [
|
|||||||
// 数据库类型
|
// 数据库类型
|
||||||
'type' => 'mysql',
|
'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' => [],
|
'params' => [],
|
||||||
// 数据库编码默认采用 utf8
|
// 数据库编码默认采用 utf8
|
||||||
'charset' => 'utf8mb4',
|
'charset' => 'utf8mb4',
|
||||||
// 数据库表前缀
|
// 数据库表前缀
|
||||||
'prefix' => '',
|
'prefix' => env('mysql.prefix', ''),
|
||||||
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
|
// 数据库部署方式:0 集中式(单一服务器),1 分布式(主从服务器)
|
||||||
'deploy' => 0,
|
'deploy' => 0,
|
||||||
// 数据库读写是否分离 主从式有效
|
// 数据库读写是否分离 主从式有效
|
||||||
|
Loading…
x
Reference in New Issue
Block a user