chrisman / pdqq

Pretty Darn Quick Queue
0 stars 0 forks source link
nodejs trello webhooks

PDQQ 🏃‍♂️

Pretty Darn Quick Queue

About

An expirement with adding functionality to Trello through webhooks and powerups.

How To

  1. 📝 Go to the trello board and edit the To Do list. (Add a card, delete a card, etc.)

  2. 🎉 Look at the heroku logs and notice the webhook response.

Structure

.
├── README.md
├── app.js
├── bin
│   └── myFirstWebhook.js
├── env.example
├── index.js
├── package.json
├── routes
│   └── WebhookRouter.js
├── webhooks
│   └── README.md
└── yarn.lock

Development

  1. cp env.example ./.env. Edit .env. Note: most of these values are for the scripts in /bin, which aren't working right now. You'll need them if you're going to try to create or edit webhooks outside of the sandbox.

  2. Install dependencies and run the dev server: yarn && yarn run start

Deploy

WIP

  1. git remote add heroku https://git.heroku.com/pdqq.git

  2. yarn run deploy