14 lines
269 B
Zig
14 lines
269 B
Zig
pub const database = .{
|
|
.development = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "localhost",
|
|
},
|
|
.testing = .{
|
|
.adapter = .postgresql,
|
|
},
|
|
.production = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "postgres"
|
|
},
|
|
};
|