Pretty Darn Quick Queue
An expirement with adding functionality to Trello through webhooks and powerups.
-
📝 Go to the trello board and edit the To Do list. (Add a card, delete a card, etc.)
-
🎉 Look at the heroku logs and notice the webhook response.
.
├── README.md
├── app.js
├── bin
│ └── myFirstWebhook.js
├── env.example
├── index.js
├── package.json
├── routes
│ └── WebhookRouter.js
├── webhooks
│ └── README.md
└── yarn.lock
index.js
- all server logicapp.js
- all express logicroutes/
- contains routeswebhooks/
- actual hooks to include in your routes.bin/
- scripts to create/manage webhooks. WIP. currently all webhooks are being created via the developer sandbox.
-
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. -
Install dependencies and run the dev server:
yarn && yarn run start
WIP
-
git remote add heroku https://git.heroku.com/pdqq.git
-
yarn run deploy