Start process_scrobbles job

This commit is contained in:
mitteneer 2024-11-30 12:44:01 -05:00
parent 32c89bc12c
commit e32d863354
9 changed files with 172 additions and 22 deletions

View file

@ -6,6 +6,7 @@ pub const database = .{
.username = "postgres",
.password = "postgres",
.database = "zuletzt_testing",
.pool_size = 16,
},
.development = .{
@ -15,6 +16,7 @@ pub const database = .{
.username = "postgres",
.password = "postgres",
.database = "zuletzt_dev",
.pool_size = 16,
},
.production = .{
@ -24,5 +26,6 @@ pub const database = .{
.username = "postgres",
.password = "postgres",
.database = "zuletzt",
.pool_size = 16,
},
};