brudi_völler
brudi_völler
Explore posts from servers
RRailway
Created by brudi_völler on 5/11/2024 in #✋|help
Help with IPv6 Rotation
Can someone maybe help me to setup ipv6 rotation for one of my deployments on railway? Is it even possible to set this up? 🙂
14 replies
RRailway
Created by brudi_völler on 1/17/2024 in #✋|help
Install FFMPEG
Hello, I currently have a Go app running on Railway, and I'm looking to integrate ffmpeg. Could you provide guidance on how to install ffmpeg in my Railway app instance? Thank you! 🙂 ProjectID: 750acec2-c922-4a50-a05f-08d2583e6fec
18 replies
RRailway
Created by brudi_völler on 4/6/2023 in #✋|help
missing "="
I get this error if i try to connect to railway db with go, missing "=" after "\"postgresql://<user>:<pw>@<host>:<port>/railway\"" in connection info string" I connect like this:
import (
"database/sql"
"fmt"

_ "github.com/lib/pq"
)

func main() {
db, err := sql.Open("postgres", config.DB_URL)

if err != nil {
fmt.Println(err)
return
}
defer db.Close()

err = db.Ping()
if err != nil {
fmt.Println(err)
return
}
}
import (
"database/sql"
"fmt"

_ "github.com/lib/pq"
)

func main() {
db, err := sql.Open("postgres", config.DB_URL)

if err != nil {
fmt.Println(err)
return
}
defer db.Close()

err = db.Ping()
if err != nil {
fmt.Println(err)
return
}
}
4 replies