You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
578 B
Bash

# App
APP_NAME="Google Workspace Hub"
DATABASE_URL="sqlite:///./app.db"
# Google OAuth (archivo en credentials/client_secret.json)
GOOGLE_CLIENT_SECRET_FILE="credentials/client_secret.json"
GOOGLE_REDIRECT_URI="http://127.0.0.1:8000/auth/google/callback"
# Scopes separados por espacio
# Ajusta según lo que necesites (menos scopes = mejor)
GOOGLE_SCOPES="openid email profile https://www.googleapis.com/auth/gmail.send https://www.googleapis.com/auth/gmail.readonly https://www.googleapis.com/auth/classroom.courses.readonly https://www.googleapis.com/auth/calendar.events"