├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __pycache__ ├── eig_plugin.cpython-35.pyc └── slackbot_settings.cpython-35.pyc ├── eig_bot.db ├── eig_plugin.py ├── nohup.out ├── plugins └── eig_plugin.py ├── requirements.txt ├── run.py ├── run.sh ├── setup.py ├── slackbot_settings.py ├── stop.sh └── wakemydyno.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/eig_plugin.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/__pycache__/eig_plugin.cpython-35.pyc -------------------------------------------------------------------------------- /__pycache__/slackbot_settings.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/__pycache__/slackbot_settings.cpython-35.pyc -------------------------------------------------------------------------------- /eig_bot.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/eig_bot.db -------------------------------------------------------------------------------- /eig_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/eig_plugin.py -------------------------------------------------------------------------------- /nohup.out: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /plugins/eig_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/plugins/eig_plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/run.py -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | nohup python3 run.py & 2 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/setup.py -------------------------------------------------------------------------------- /slackbot_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/slackbot_settings.py -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- 1 | killall python3 2 | -------------------------------------------------------------------------------- /wakemydyno.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilInsultGenerator/slack-bot/HEAD/wakemydyno.txt --------------------------------------------------------------------------------