├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── copyout.sh ├── live.yml ├── nuke.sh └── push.sh /.gitignore: -------------------------------------------------------------------------------- 1 | \.DS_Store 2 | xrutils/ -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/README.md -------------------------------------------------------------------------------- /copyout.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/copyout.sh -------------------------------------------------------------------------------- /live.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/live.yml -------------------------------------------------------------------------------- /nuke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/nuke.sh -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Plattar/python-xrutils/HEAD/push.sh --------------------------------------------------------------------------------