31 lines
745 B
Zig
31 lines
745 B
Zig
pub const database = .{
|
|
.testing = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "localhost",
|
|
.port = 5432,
|
|
.username = "postgres",
|
|
.password = "postgres",
|
|
.database = "zuletzt_testing",
|
|
.pool_size = 16,
|
|
},
|
|
|
|
.development = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "localhost",
|
|
.port = 5432,
|
|
.username = "postgres",
|
|
.password = "postgres",
|
|
.database = "zuletzt_rsql",
|
|
.pool_size = 16,
|
|
},
|
|
|
|
.production = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "localhost",
|
|
.port = 5432,
|
|
.username = "postgres",
|
|
.password = "postgres",
|
|
.database = "zuletzt",
|
|
.pool_size = 16,
|
|
},
|
|
};
|