mirror of
https://github.com/pagefaultgames/rogueserver.git
synced 2025-04-04 03:57:13 +08:00
Update callback URL for Oauth2 client in docker-compose and rogueserver.go
This commit is contained in:
parent
f221d03c68
commit
acdc3cb8d4
@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
server:
|
server:
|
||||||
command: --debug --dbaddr db --dbuser pokerogue --dbpass pokerogue --dbname pokeroguedb --gameurl http://localhost:8000 --callbackuri http://localhost:8001
|
command: --debug --dbaddr db --dbuser pokerogue --dbpass pokerogue --dbname pokeroguedb --gameurl http://localhost:8000 --callbackurl http://localhost:8001
|
||||||
image: ghcr.io/pagefaultgames/rogueserver:master
|
image: ghcr.io/pagefaultgames/rogueserver:master
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -49,7 +49,7 @@ func main() {
|
|||||||
|
|
||||||
googleclientid := flag.String("googleclientid", "gcid", "Google Oauth2 Client ID")
|
googleclientid := flag.String("googleclientid", "gcid", "Google Oauth2 Client ID")
|
||||||
googlesecretid := flag.String("googlesecretid", "gsid", "Google Oauth2 Secret ID")
|
googlesecretid := flag.String("googlesecretid", "gsid", "Google Oauth2 Secret ID")
|
||||||
callbackuri := flag.String("callbackuri", "http://localhost:8001/", "Callback URI for Oauth2 Client")
|
callbackurl := flag.String("callbackurl", "http://localhost:8001/", "Callback URI for Oauth2 Client")
|
||||||
|
|
||||||
gameurl := flag.String("gameurl", "https://pokerogue.net", "URL for game server")
|
gameurl := flag.String("gameurl", "https://pokerogue.net", "URL for game server")
|
||||||
|
|
||||||
@ -58,11 +58,11 @@ func main() {
|
|||||||
// set discord client id as env variable
|
// set discord client id as env variable
|
||||||
os.Setenv("DISCORD_CLIENT_ID", *discordclientid)
|
os.Setenv("DISCORD_CLIENT_ID", *discordclientid)
|
||||||
os.Setenv("DISCORD_CLIENT_SECRET", *discordsecretid)
|
os.Setenv("DISCORD_CLIENT_SECRET", *discordsecretid)
|
||||||
os.Setenv("DISCORD_CALLBACK_URI", *callbackuri+"/auth/discord/callback")
|
os.Setenv("DISCORD_CALLBACK_URI", *callbackurl+"/auth/discord/callback")
|
||||||
|
|
||||||
os.Setenv("GOOGLE_CLIENT_ID", *googleclientid)
|
os.Setenv("GOOGLE_CLIENT_ID", *googleclientid)
|
||||||
os.Setenv("GOOGLE_CLIENT_SECRET", *googlesecretid)
|
os.Setenv("GOOGLE_CLIENT_SECRET", *googlesecretid)
|
||||||
os.Setenv("GOOGLE_CALLBACK_URI", *callbackuri+"/auth/google/callback")
|
os.Setenv("GOOGLE_CALLBACK_URI", *callbackurl+"/auth/google/callback")
|
||||||
os.Setenv("GAME_URL", *gameurl)
|
os.Setenv("GAME_URL", *gameurl)
|
||||||
|
|
||||||
// register gob types
|
// register gob types
|
||||||
|
Loading…
x
Reference in New Issue
Block a user