#Google Authentication
- Create a new Google application.
- Configure the OAuth consent screen, the callback URL should be
<your-meli-server-url>/auth/google/callback
- Create OAuth credentials
- 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>