BuzzwordCRM is a sample application that demonstrates how to build applications using Calendly's v2 api.
-
Register as a Calendly developer (if you haven't already) by logging into your Calendly account and Create a developer account (note: this app assumes that your redirect uri will be http://localhost:3000/oauth/callback).
-
Once you've received your Client ID and Client Secret you can then copy
.env.example
to.env
and update the file's environment variables with your application's credentials. You can update the redirect URL in this file as well.cp .env.example .env
-
Run
npm install
to install dependencies. -
Run
npm run dev
to start the application. -
Navigate to
http://localhost:3000
.
BuzzwordCRM is equipped with integration tests, built with Cypress. To run tests locally you can run npm run test
, this starts a test server and then opens the Cypress runner.