Live demo: http://thepoint.surge.sh
Include a suedebrush.png file that you want to use as your suede texture
| { | |
| "AWSEBDockerrunVersion": "1", | |
| "Image": { | |
| "Name": "bestest-aws-org.dkr.ecr.us-east-1.amazonaws.com/token/this-web-scale:latest", | |
| "Update": "true" | |
| }, | |
| "Ports": [ | |
| { | |
| "ContainerPort": "3000" | |
| } |
| FROM node:alpine | |
| # Create app directory | |
| RUN mkdir -p /usr/src | |
| WORKDIR /usr/src | |
| # Install app dependencies | |
| COPY package.json /usr/src/ | |
| COPY package-lock.json /usr/src/ | |
| RUN npm install |
Live demo: http://thepoint.surge.sh
Include a suedebrush.png file that you want to use as your suede texture
I hereby claim:
To claim this, I am signing this object:
| var Botkit = require('botkit'); | |
| if(!process.env.SLACK_CLIENT_ID || | |
| !process.env.SLACK_CLIENT_SECRET || | |
| !process.env.SLACK_VERIFICATION_TOKEN) { | |
| console.log('Error: Specify SLACK_CLIENT_ID, SLACK_CLIENT_SECRET and SLACK_VERIFICATION_TOKEN in environment'); | |
| process.exit(1); | |
| } | |
| var config = {} |
| // npm install request and cheerio, if these aren't working | |
| var request = require('request'); | |
| var cheerio = require('cheerio'); | |
| var sendGIFToClient = function(url) { | |
| // TODO | |
| console.log(url); | |
| }; | |
| var sendWordToClient = function(word, definition, example) { |