This guide will help you get started with running the app locally and connecting it to Google Calendar using OAuth2.
git clone https://github.com/yourusername/TimelyMeet.git
cd TimelyMeet
npm install
- Go to the Google Cloud Console.
- Create a new project (or select an existing one).
- Enable the Google Calendar API:
- Go to APIs & Services → Library
- Search for Google Calendar API and enable it.
- Go to APIs & Services → Credentials
- Click Create Credentials → OAuth client ID
- Choose the following:
- Application type:
Desktop app
- Name: e.g.,
ElectronMeetingApp
- Application type:
- Click Create
- Download the credentials as a JSON file and save it as:
credentials.json
- Place
credentials.json
in the root directory of the project (or wherever your code expects it — default is./credentials.json
).
npm start