I’m currently trying to integrate Google Calendar ...
# developers
d
I’m currently trying to integrate Google Calendar into my selfhosted instance. I’m using this guide on how to do it: https://github.com/calcom/cal.com#obtaining-the-google-api-credentials I’m using docker and the google calendar app is not showing up for me. My approach is copying
RUN cd packages/prisma && yarn seed-app-store
into the Dockerfile. The output when running
docker compose up
implies that google calendar was added successfully:
Copy code
calcom-docker-calcom-1    | No pending migrations to apply.
calcom-docker-calcom-1    | + npx ts-node --transpile-only /calcom/packages/prisma/seed-app-store.ts
calcom-docker-calcom-1    | 📲 Upserted app: 'apple-calendar'
calcom-docker-calcom-1    | 📲 Upserted app: 'caldav-calendar'
calcom-docker-calcom-1    | 📲 Upserted app: 'exchange2013-calendar'
calcom-docker-calcom-1    | 📲 Upserted app: 'exchange2016-calendar'
calcom-docker-calcom-1    | 📲 Upserted app: 'google-calendar'
calcom-docker-calcom-1    | 📲 Upserted app: 'google-meet'
calcom-docker-calcom-1    | 📲 Upserted app: 'jitsi'
calcom-docker-calcom-1    | 📲 Upserted app: 'wipe-my-cal'
calcom-docker-calcom-1    | 📲 Upserted app: 'huddle01'
calcom-docker-calcom-1    | 📲 Upserted app: 'metamask'
calcom-docker-calcom-1    | + yarn start
how I get the google calendar app to show up in my web ui?
s
Have you populated your .env file with the the credentials from the JSON google provides?
d
yes, otherwise there would be an error running
yarn seed-app-store