Google OAuth Setup
For Users
Simply click "Sign in with Google" on the login page or use:
arm login --provider google
For Self-Hosting
1. Create Google OAuth Credentials
- Go to Google Cloud Console
- Create a new project or select existing
- Go to APIs & Services → Credentials
- Create OAuth 2.0 Client ID
- Add authorized redirect URIs:
https://yourdomain.com/api/auth/google/callback
2. Configure Environment
GOOGLE_CLIENT_ID=your-client-id
GOOGLE_CLIENT_SECRET=your-client-secret
3. Restart Services
docker compose restart backend