├── .gitignore ├── LICENSE ├── README.md ├── lib └── uota.py ├── package.json ├── pylintrc ├── test ├── README.md ├── data │ ├── latest │ └── test.tgz ├── docker-compose.yml ├── htpasswd ├── nginx.conf └── uota.cfg └── uota.cfg.example /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/README.md -------------------------------------------------------------------------------- /lib/uota.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/lib/uota.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/package.json -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/pylintrc -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/test/README.md -------------------------------------------------------------------------------- /test/data/latest: -------------------------------------------------------------------------------- 1 | 2.0.1;test.tgz -------------------------------------------------------------------------------- /test/data/test.tgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/test/data/test.tgz -------------------------------------------------------------------------------- /test/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/test/docker-compose.yml -------------------------------------------------------------------------------- /test/htpasswd: -------------------------------------------------------------------------------- 1 | test_user:$apr1$IpEaa/Kt$dR1SGembaTli/iyp6VY380 -------------------------------------------------------------------------------- /test/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/test/nginx.conf -------------------------------------------------------------------------------- /test/uota.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/test/uota.cfg -------------------------------------------------------------------------------- /uota.cfg.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkomon/uota/HEAD/uota.cfg.example --------------------------------------------------------------------------------