- Run
yarn
in order to install all dependencies - Run
docker-compose up -d
to run all infrastructure. - Update
.env
According the instruction appears there. - Run
prepare:db
in order to setup the DB - Now that everything is setup run
yarn start
- Open Google API Console. If you don't have a project in your Google Cloud subscription, you'll need to create one before proceeding further. Under Dashboard pane, select Enable APIS and Services.
- In the search box, type calendar and select the Google Calendar API search result.
- Enable the selected API.
- Next, go to the OAuth consent screen from the side pane. Select the app type (Internal or External) and enter the basic app details on the first page.
- In the second page on Scopes, select Add or Remove Scopes. Search for Calendar.event and select the scope with scope
value
.../auth/calendar.events
,.../auth/calendar.readonly
and select Update. - In the third page (Test Users), add the Google account(s) you'll using. Make sure the details are correct on the last page of the wizard and your consent screen will be configured.
- Now select Credentials from the side pane and then select Create Credentials. Select the OAuth Client ID option.
- Select Web Application as the Application Type.
- Under Authorized redirect URI's, select Add URI and then add the
URI
<Syncit URL>/api/integrations/googlecalendar/callback
replacing Syncit URL with the URI at which your application runs. - The key will be created and you will be redirected back to the Credentials page. Select the newly generated client ID under OAuth 2.0 Client IDs.
- Select Download JSON. Copy the contents of this file and paste the entire JSON string in the .env file as the value for GOOGLE_API_CREDENTIALS key.
You will need to complete a few more steps to activate Google Calendar App. Make sure to complete section "Obtaining the Google API Credentials". After the do the following
- Add extra redirect URL
<Syncit URL>/api/auth/callback/google
- Under 'OAuth concent screen', click "PUBLISH APP"
Distributed under the MIT License. See LICENSE for more information.
Feel free to open us PR on anything you think can help this project. you also can check the issues here and try to fix them. Found some kind of problem Let us know about it
TBD