mirror of
https://github.com/jetzig-framework/jetzig.git
synced 2025-05-14 22:16:08 +00:00
17 lines
414 B
Zig
17 lines
414 B
Zig
pub const database = .{
|
|
.development = .{
|
|
.adapter = .postgresql,
|
|
.username = "root",
|
|
.password = "root",
|
|
.hostname = "localhost",
|
|
.database = "jetzig_demo_dev",
|
|
.port = 5432, // See `compose.yml`
|
|
},
|
|
// This configuration is used for CI
|
|
// in GitHub
|
|
.testing = .{
|
|
.adapter = .postgresql,
|
|
.database = "jetzig_demo_test",
|
|
},
|
|
};
|