Skip to main content

Google Authentication

  1. Create a new Google application.
  2. Configure the OAuth consent screen, the callback URL should be <your-meli-server-url>/auth/google/callback
  3. Create OAuth credentials
  4. Get your client ID and client secret

Now, you can update your docker-compose.yml:

services:
# ...
server:
# ...
environment:
# ...
MELI_GOOGLE_CLIENT_ID: <your-google-oauth-app-client-id>
MELI_GOOGLE_CLIENT_SECRET: <your-google-oauth-app-client-secret>

:::