25 lines
613 B
Lua
25 lines
613 B
Lua
|
|
---
|
||
|
|
--- Generated by EmmyLua(https://github.com/EmmyLua)
|
||
|
|
--- Created by admin.
|
||
|
|
--- DateTime: 2025/9/24 16:31
|
||
|
|
---
|
||
|
|
|
||
|
|
return {
|
||
|
|
APP_ENV = "dev", -- dev/prod
|
||
|
|
|
||
|
|
-- 配置redis数据库连接
|
||
|
|
REDIS = {
|
||
|
|
HOST = "127.0.0.1", -- redis host
|
||
|
|
PORT = 6379, -- redis port
|
||
|
|
PASSWORD = nil -- redis password
|
||
|
|
},
|
||
|
|
|
||
|
|
-- 配置PostgresSQL数据库连接
|
||
|
|
POSTGRES = {
|
||
|
|
HOST = "127.0.0.1", -- postgres host
|
||
|
|
PORT = 5432, -- postgres port
|
||
|
|
USERNAME = "postgres",
|
||
|
|
PASSWORD = "123456", -- postgres password
|
||
|
|
DATABASE = "postgres"
|
||
|
|
}
|
||
|
|
}
|