├── .gitignore ├── README.md ├── Vagrantfile ├── config └── .gitkeep ├── datastore_load └── .gitkeep ├── packs_dev └── .gitkeep ├── scripts └── install_st2.sh └── test.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/st2vagrant/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/st2vagrant/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/st2vagrant/HEAD/Vagrantfile -------------------------------------------------------------------------------- /config/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /datastore_load/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packs_dev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/install_st2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/st2vagrant/HEAD/scripts/install_st2.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StackStorm/st2vagrant/HEAD/test.sh --------------------------------------------------------------------------------