├── .gitignore ├── CHANGELOG.md ├── HOWTO-libvirt.md ├── LICENSE ├── README.md ├── helpers ├── Makefile ├── enter-grain-source │ ├── .gitignore │ ├── Cargo.lock │ ├── Cargo.toml │ └── src │ │ └── main.rs ├── enter_grain └── enter_grain.sha1 ├── release.sh ├── stacks ├── diy │ ├── build.sh │ ├── launcher.sh │ └── setup.sh ├── golang │ ├── build.sh │ ├── launcher.sh │ └── setup.sh ├── lemp │ ├── build.sh │ ├── launcher.sh │ ├── service-config │ │ ├── mime.types │ │ └── nginx.conf │ └── setup.sh ├── lesp │ ├── build.sh │ ├── launcher.sh │ ├── service-config │ │ ├── mime.types │ │ └── nginx.conf │ └── setup.sh ├── meteor │ ├── build.sh │ ├── initargs │ ├── launcher.sh │ └── setup.sh ├── node │ ├── build.sh │ ├── launcher.sh │ └── setup.sh ├── python │ ├── build.sh │ ├── launcher.sh │ └── setup.sh ├── static │ ├── launcher.sh │ ├── service-config │ │ ├── mime.types │ │ └── nginx.conf │ └── setup.sh └── uwsgi │ ├── build.sh │ ├── launcher.sh │ ├── service-config │ ├── mime.types │ └── nginx.conf │ └── setup.sh ├── vagrant-spk └── windows-support ├── Makefile ├── modpath.iss └── windows-installer.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /HOWTO-libvirt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/HOWTO-libvirt.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/README.md -------------------------------------------------------------------------------- /helpers/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/helpers/Makefile -------------------------------------------------------------------------------- /helpers/enter-grain-source/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | target -------------------------------------------------------------------------------- /helpers/enter-grain-source/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/helpers/enter-grain-source/Cargo.lock -------------------------------------------------------------------------------- /helpers/enter-grain-source/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/helpers/enter-grain-source/Cargo.toml -------------------------------------------------------------------------------- /helpers/enter-grain-source/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/helpers/enter-grain-source/src/main.rs -------------------------------------------------------------------------------- /helpers/enter_grain: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/helpers/enter_grain -------------------------------------------------------------------------------- /helpers/enter_grain.sha1: -------------------------------------------------------------------------------- 1 | 3e1a80bd7ca1f61de6b3044e904947264e6f6e53 enter_grain 2 | -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/release.sh -------------------------------------------------------------------------------- /stacks/diy/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/diy/build.sh -------------------------------------------------------------------------------- /stacks/diy/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/diy/launcher.sh -------------------------------------------------------------------------------- /stacks/diy/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/diy/setup.sh -------------------------------------------------------------------------------- /stacks/golang/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/golang/build.sh -------------------------------------------------------------------------------- /stacks/golang/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/golang/launcher.sh -------------------------------------------------------------------------------- /stacks/golang/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/golang/setup.sh -------------------------------------------------------------------------------- /stacks/lemp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lemp/build.sh -------------------------------------------------------------------------------- /stacks/lemp/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lemp/launcher.sh -------------------------------------------------------------------------------- /stacks/lemp/service-config/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lemp/service-config/mime.types -------------------------------------------------------------------------------- /stacks/lemp/service-config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lemp/service-config/nginx.conf -------------------------------------------------------------------------------- /stacks/lemp/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lemp/setup.sh -------------------------------------------------------------------------------- /stacks/lesp/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lesp/build.sh -------------------------------------------------------------------------------- /stacks/lesp/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lesp/launcher.sh -------------------------------------------------------------------------------- /stacks/lesp/service-config/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lesp/service-config/mime.types -------------------------------------------------------------------------------- /stacks/lesp/service-config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lesp/service-config/nginx.conf -------------------------------------------------------------------------------- /stacks/lesp/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/lesp/setup.sh -------------------------------------------------------------------------------- /stacks/meteor/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/meteor/build.sh -------------------------------------------------------------------------------- /stacks/meteor/initargs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/meteor/initargs -------------------------------------------------------------------------------- /stacks/meteor/launcher.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -euo pipefail 3 | 4 | exec node /start.js -p 8000 5 | -------------------------------------------------------------------------------- /stacks/meteor/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/meteor/setup.sh -------------------------------------------------------------------------------- /stacks/node/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/node/build.sh -------------------------------------------------------------------------------- /stacks/node/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/node/launcher.sh -------------------------------------------------------------------------------- /stacks/node/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/node/setup.sh -------------------------------------------------------------------------------- /stacks/python/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/python/build.sh -------------------------------------------------------------------------------- /stacks/python/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/python/launcher.sh -------------------------------------------------------------------------------- /stacks/python/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/python/setup.sh -------------------------------------------------------------------------------- /stacks/static/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/static/launcher.sh -------------------------------------------------------------------------------- /stacks/static/service-config/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/static/service-config/mime.types -------------------------------------------------------------------------------- /stacks/static/service-config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/static/service-config/nginx.conf -------------------------------------------------------------------------------- /stacks/static/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/static/setup.sh -------------------------------------------------------------------------------- /stacks/uwsgi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/uwsgi/build.sh -------------------------------------------------------------------------------- /stacks/uwsgi/launcher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/uwsgi/launcher.sh -------------------------------------------------------------------------------- /stacks/uwsgi/service-config/mime.types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/uwsgi/service-config/mime.types -------------------------------------------------------------------------------- /stacks/uwsgi/service-config/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/uwsgi/service-config/nginx.conf -------------------------------------------------------------------------------- /stacks/uwsgi/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/stacks/uwsgi/setup.sh -------------------------------------------------------------------------------- /vagrant-spk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/vagrant-spk -------------------------------------------------------------------------------- /windows-support/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/windows-support/Makefile -------------------------------------------------------------------------------- /windows-support/modpath.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/windows-support/modpath.iss -------------------------------------------------------------------------------- /windows-support/windows-installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sandstorm-io/vagrant-spk/HEAD/windows-support/windows-installer.iss --------------------------------------------------------------------------------