fix: add missing OAuth i18n keys, remap dev redis off port 6379
login page referenced auth.continueWithGithub/Discord/Authentik keys that didn't exist in en/fr message files, crashing the login page. Also remap docker/compose.yml redis to 6380 since 6379 collides with an unrelated local container on this machine. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -168,6 +168,9 @@
|
|||||||
"signUpFailed": "Sign up failed",
|
"signUpFailed": "Sign up failed",
|
||||||
"signUpSuccess": "Account created — check your email to verify",
|
"signUpSuccess": "Account created — check your email to verify",
|
||||||
"continueWithGoogle": "Continue with Google",
|
"continueWithGoogle": "Continue with Google",
|
||||||
|
"continueWithGithub": "Continue with GitHub",
|
||||||
|
"continueWithDiscord": "Continue with Discord",
|
||||||
|
"continueWithAuthentik": "Continue with Authentik",
|
||||||
"email": "Email",
|
"email": "Email",
|
||||||
"emailPlaceholder": "you@example.com",
|
"emailPlaceholder": "you@example.com",
|
||||||
"password": "Password",
|
"password": "Password",
|
||||||
|
|||||||
@@ -116,6 +116,9 @@
|
|||||||
"signUpSubtitle": "Commencez à construire votre bibliothèque de recettes",
|
"signUpSubtitle": "Commencez à construire votre bibliothèque de recettes",
|
||||||
"signUpLoading": "Création du compte…",
|
"signUpLoading": "Création du compte…",
|
||||||
"continueWithGoogle": "Continuer avec Google",
|
"continueWithGoogle": "Continuer avec Google",
|
||||||
|
"continueWithGithub": "Continuer avec GitHub",
|
||||||
|
"continueWithDiscord": "Continuer avec Discord",
|
||||||
|
"continueWithAuthentik": "Continuer avec Authentik",
|
||||||
"email": "E-mail",
|
"email": "E-mail",
|
||||||
"emailPlaceholder": "vous@exemple.fr",
|
"emailPlaceholder": "vous@exemple.fr",
|
||||||
"password": "Mot de passe",
|
"password": "Mot de passe",
|
||||||
|
|||||||
+1
-1
@@ -20,7 +20,7 @@ services:
|
|||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6380:6379"
|
||||||
volumes:
|
volumes:
|
||||||
- redis_data:/data
|
- redis_data:/data
|
||||||
command: redis-server --save 60 1
|
command: redis-server --save 60 1
|
||||||
|
|||||||
Reference in New Issue
Block a user