├── .dockerignore ├── .eslintrc.json ├── .fonts ├── TakaoGothic.ttf ├── TakaoMincho.ttf ├── TakaoPGothic.ttf └── TakaoPMincho.ttf ├── .gitignore ├── Dockerfile ├── Procfile ├── README.md ├── app.json ├── images └── screenshot.png ├── index.js └── package.json /.dockerignore: -------------------------------------------------------------------------------- 1 | .git/ 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.fonts/TakaoGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/.fonts/TakaoGothic.ttf -------------------------------------------------------------------------------- /.fonts/TakaoMincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/.fonts/TakaoMincho.ttf -------------------------------------------------------------------------------- /.fonts/TakaoPGothic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/.fonts/TakaoPGothic.ttf -------------------------------------------------------------------------------- /.fonts/TakaoPMincho.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/.fonts/TakaoPMincho.ttf -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | npm-debug.log 3 | .env 4 | 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: node index.js 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/app.json -------------------------------------------------------------------------------- /images/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/images/screenshot.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hakobera/redashbot/HEAD/package.json --------------------------------------------------------------------------------