├── .github ├── ISSUE_TEMPLATE └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── docs ├── images │ ├── TwitterKeys1.PNG │ ├── branchSelection.png │ ├── configVariables.PNG │ ├── createHerokuApp.png │ ├── herokuDeployment.png │ ├── herokuGithubConnect.png │ ├── twitterAccessPermissions.PNG │ ├── twitterAppNew.PNG │ ├── twitterChat.PNG │ └── twitterConfigVariables.PNG └── installations │ └── gce-kubernetes.md ├── index.js ├── kubernetes ├── deploy.sh ├── images │ └── generator │ │ ├── Dockerfile │ │ └── setup.sh ├── travis │ ├── deploy.sh │ └── susi-telegrambot-85cf0ec296e9.json.enc └── yamls │ └── generator │ ├── 00-namespace.yml │ ├── configmap.yml │ ├── generator-deployment.yml │ └── generator-service.yml ├── package.json └── procfile /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.js 2 | node_modules/ 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/README.md -------------------------------------------------------------------------------- /docs/images/TwitterKeys1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/TwitterKeys1.PNG -------------------------------------------------------------------------------- /docs/images/branchSelection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/branchSelection.png -------------------------------------------------------------------------------- /docs/images/configVariables.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/configVariables.PNG -------------------------------------------------------------------------------- /docs/images/createHerokuApp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/createHerokuApp.png -------------------------------------------------------------------------------- /docs/images/herokuDeployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/herokuDeployment.png -------------------------------------------------------------------------------- /docs/images/herokuGithubConnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/herokuGithubConnect.png -------------------------------------------------------------------------------- /docs/images/twitterAccessPermissions.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/twitterAccessPermissions.PNG -------------------------------------------------------------------------------- /docs/images/twitterAppNew.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/twitterAppNew.PNG -------------------------------------------------------------------------------- /docs/images/twitterChat.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/twitterChat.PNG -------------------------------------------------------------------------------- /docs/images/twitterConfigVariables.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/images/twitterConfigVariables.PNG -------------------------------------------------------------------------------- /docs/installations/gce-kubernetes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/docs/installations/gce-kubernetes.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/index.js -------------------------------------------------------------------------------- /kubernetes/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/deploy.sh -------------------------------------------------------------------------------- /kubernetes/images/generator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/images/generator/Dockerfile -------------------------------------------------------------------------------- /kubernetes/images/generator/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/images/generator/setup.sh -------------------------------------------------------------------------------- /kubernetes/travis/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/travis/deploy.sh -------------------------------------------------------------------------------- /kubernetes/travis/susi-telegrambot-85cf0ec296e9.json.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/travis/susi-telegrambot-85cf0ec296e9.json.enc -------------------------------------------------------------------------------- /kubernetes/yamls/generator/00-namespace.yml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Namespace 3 | metadata: 4 | name: tweetbot 5 | -------------------------------------------------------------------------------- /kubernetes/yamls/generator/configmap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/yamls/generator/configmap.yml -------------------------------------------------------------------------------- /kubernetes/yamls/generator/generator-deployment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/yamls/generator/generator-deployment.yml -------------------------------------------------------------------------------- /kubernetes/yamls/generator/generator-service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/kubernetes/yamls/generator/generator-service.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fossasia/susi_tweetbot/HEAD/package.json -------------------------------------------------------------------------------- /procfile: -------------------------------------------------------------------------------- 1 | web: node index.js 2 | --------------------------------------------------------------------------------