[self-hosted] setup for gmail and google calendar help
I've setup Twenty with docker and I can access Twenty with http://localhost:3003.
Now I want to setup gmail and google calendar.
i've followed https://twenty.com/developers/section/self-hosting/setup.
I don't understand the following:
Register the following recurring jobs:
from your worker container
yarn command:prod cron:messaging:messages-import
yarn command:prod cron:messaging:message-list-fetch
yarn command:prod cron📆calendar-event-list-fetch
yarn command:prod cron📆calendar-events-import
yarn command:prod cron:messaging:ongoing-stale
yarn command:prod cron📆ongoing-stale
yarn command:prod cron:workflow:automated-cron-trigger
I'm not sure how to do this... Is that necessary?
Also, I see "Sync failed"... is it because I didn't set up the cron jobs? thank you!
Also, I see "Sync failed"... is it because I didn't set up the cron jobs? thank you!
4 Replies
Hey @caro yes you need to run listed command in your twenty worker container
To do so you can use docker exec https://docs.docker.com/reference/cli/docker/container/exec/
Docker Documentation
docker container exec
Or you the docker GUI directly I think
thank you!