yuzucchii.xyz/config/database.zig
2025-05-06 21:11:52 -05:00

14 lines
269 B
Zig

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