yuzucchii.xyz/config/database.zig
2025-05-05 19:04:30 -05:00

13 lines
236 B
Zig

pub const database = .{
.development = .{
.adapter = .postgresql,
},
.testing = .{
.adapter = .postgresql,
},
.production = .{
.adapter = .postgresql,
.hostname = "postgres"
},
};