Google OAuth Setup
1. Create OAuth Client in Google Console
- Go to Google Cloud Console → Credentials
- Click Create Credentials → OAuth client ID
- Application type: Web application
- Name:
Rungu Feedback Board - Authorized redirect URI:
https://your-domain.com/auth/google/callback
2. Get Credentials
After creation, you'll get:
- Client ID:
xxxx.apps.googleusercontent.com - Client Secret:
GOCSPX-xxxx
3. Configure Rungu
env
APP_URL=https://your-domain.com
GOOGLE_CLIENT_ID=xxxx.apps.googleusercontent.com
GOOGLE_CLIENT_SECRET=GOCSPX-xxxxRedirect URI
Default: {APP_URL}/auth/google/callback
You can override with GOOGLE_REDIRECT_URI env var.