From e45559ecb3a1788f2484b7f292c4f1548d7a130a Mon Sep 17 00:00:00 2001 From: Ryan Hamamura <58859899+ryanhamamura@users.noreply.github.com> Date: Fri, 13 Feb 2026 09:24:49 -1000 Subject: [PATCH] chore: update APP_URL to games.adriatica.io --- .env.example | 2 +- ui/status.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.example b/.env.example index af41a04..0643835 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ -# Application URL for invite links (defaults to https://demo.adriatica.io) +# Application URL for invite links (defaults to https://games.adriatica.io) # APP_URL=http://localhost:7331 # Server port (defaults to 7331) diff --git a/ui/status.go b/ui/status.go index 58e5af0..37a0e8c 100644 --- a/ui/status.go +++ b/ui/status.go @@ -121,7 +121,7 @@ func getBaseURL() string { if url := os.Getenv("APP_URL"); url != "" { return url } - return "https://demo.adriatica.io" + return "https://games.adriatica.io" } func InviteLink(gameID string) h.H {