michal testing

This commit is contained in:
2026-05-02 10:28:59 +02:00
parent dd4a5cecc0
commit a06a3b58c0
4 changed files with 11 additions and 4 deletions
+1 -1
View File
@@ -14,7 +14,7 @@ import (
) )
func main() { func main() {
db, err := sql.Open("postgres", os.Getenv("DATABASE_CONNECTION_STRING")) db, err := sql.Open("postgres", os.Getenv("DATABASE_CONNECTION_STRING")+"?sslmode=disable")
if err != nil { if err != nil {
panic(err) panic(err)
} }
+4 -3
View File
@@ -1,7 +1,8 @@
services: services:
- hostname: db - hostname: db
type: postgresql@16 type: postgresql@18
mode: NON_HA mode: HA
verticalAutoscaling:
minFreeRamGB: 0.5
- hostname: app - hostname: app
type: go@1 type: go@1
maxContainers: 1
+6
View File
@@ -0,0 +1,6 @@
services:
- type: postgresql:single@18
hostname: singleandreadytomingle3
profileId: custom
profileOverrides:
max_connections: kokos
View File