├── .env.sample ├── .gitignore ├── Dockerfile ├── README.md ├── app.json ├── bot.py ├── helpers.py ├── heroku.yml ├── requirements.txt └── sessiongen.py /.env.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/.env.sample -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | __pycache__/ 3 | tests.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/bot.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/helpers.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/heroku.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /sessiongen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xditya/VCBot/HEAD/sessiongen.py --------------------------------------------------------------------------------