yuzucchii.xyz/config/database.zig
2025-06-11 17:43:50 -05:00

12 lines
271 B
Zig

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