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