├── .env.example ├── .github └── screenshot.png ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── VERSION ├── docker-compose.yml.example ├── requirements.txt └── sptnr.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/.env.example -------------------------------------------------------------------------------- /.github/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/.github/screenshot.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | logs/*.log 2 | .env 3 | docker-compose.yml 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.3.0 -------------------------------------------------------------------------------- /docker-compose.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/docker-compose.yml.example -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/requirements.txt -------------------------------------------------------------------------------- /sptnr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krestaino/sptnr/HEAD/sptnr.py --------------------------------------------------------------------------------