fix: return to deployment

This commit is contained in:
ethanf 2024-10-12 02:25:54 -05:00
parent 3e9ba70b77
commit a1b804017b

View File

@ -16,6 +16,7 @@ type AppState = {
const router = new Router<AppState>();
const hostname = "localhost";
const deployHostname = "forums.warabi.co"
const authPath = "/auth";
const port = 8000;
@ -42,7 +43,7 @@ export interface SteamUser {
export const Steam = new SteamAuth({
realm: `http://${hostname}:${port}`,
returnUrl: `http://${hostname}:${port}${authPath}/return`,
returnUrl: `https://${deployHostname}${authPath}/return`,
apiKey: Deno.env.get("STEAM_API_KEY"),
});