├── Dockerfile ├── LICENSE.md ├── Procfile ├── app.json ├── bot.py ├── config.py ├── functions ├── __init__.py ├── filebrowserapi.py ├── functions.py └── terminal.py ├── heroku.yml ├── plugins ├── commands.py ├── exec.py └── markups.py ├── readme.md ├── requirements.txt └── runtime.txt /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 bot.py -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/app.json -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/config.py -------------------------------------------------------------------------------- /functions/__init__.py: -------------------------------------------------------------------------------- 1 | SR^. -------------------------------------------------------------------------------- /functions/filebrowserapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/functions/filebrowserapi.py -------------------------------------------------------------------------------- /functions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/functions/functions.py -------------------------------------------------------------------------------- /functions/terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/functions/terminal.py -------------------------------------------------------------------------------- /heroku.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/heroku.yml -------------------------------------------------------------------------------- /plugins/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/plugins/commands.py -------------------------------------------------------------------------------- /plugins/exec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/plugins/exec.py -------------------------------------------------------------------------------- /plugins/markups.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/plugins/markups.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moshe-coh/Terminal-Bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.8.5 2 | --------------------------------------------------------------------------------