12 lines
271 B
Zig
12 lines
271 B
Zig
pub const database = .{
|
|
.development = .{
|
|
.adapter = .postgresql,
|
|
.hostname = "localhost",
|
|
.port = 5432,
|
|
},
|
|
.testing = .{
|
|
.adapter = .postgresql,
|
|
},
|
|
.production = .{ .adapter = .postgresql, .hostname = "postgres" },
|
|
};
|