├── .env.template ├── .gitignore ├── LICENSE ├── README.md ├── compose.yml ├── dockerfile ├── mitten.py └── requirements.txt /.env.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/.env.template -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/README.md -------------------------------------------------------------------------------- /compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/compose.yml -------------------------------------------------------------------------------- /dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/dockerfile -------------------------------------------------------------------------------- /mitten.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joobert/Mitten/HEAD/mitten.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | python-dotenv 3 | --------------------------------------------------------------------------------