├── .gitignore ├── Gruntfile.coffee ├── LICENSE ├── README.md ├── bin └── vortex ├── doc └── examples │ ├── docker-helloworld │ ├── README.md │ └── vortex.json │ ├── expose-files │ ├── README.md │ ├── document.txt │ └── vortex.json │ ├── mongodb-helloworld │ ├── README.md │ ├── package.json │ └── vortex.json │ ├── nodejs-helloworld │ ├── README.md │ ├── app.js │ └── vortex.json │ ├── plugin-builtin │ ├── README.md │ ├── defaults.js │ └── vortex.json │ ├── puppet-helloworld │ ├── README.md │ ├── puppet │ │ └── manifests │ │ │ └── helloworld.pp │ └── vortex.json │ └── vortex-commander │ ├── README.md │ └── vortex.json ├── lib ├── actions.js ├── download.js ├── engine.js ├── index.js ├── manifest.js ├── plugins.js ├── provider_amazon.js ├── provider_virtualbox.js ├── providers.js ├── shell.js └── vortex.js ├── package.json └── src ├── actions.coffee ├── download.coffee ├── engine.coffee ├── index.coffee ├── manifest.coffee ├── plugins.coffee ├── provider_amazon.coffee ├── provider_virtualbox.coffee ├── providers.coffee ├── shell.coffee └── vortex.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/README.md -------------------------------------------------------------------------------- /bin/vortex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/bin/vortex -------------------------------------------------------------------------------- /doc/examples/docker-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/docker-helloworld/README.md -------------------------------------------------------------------------------- /doc/examples/docker-helloworld/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/docker-helloworld/vortex.json -------------------------------------------------------------------------------- /doc/examples/expose-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/expose-files/README.md -------------------------------------------------------------------------------- /doc/examples/expose-files/document.txt: -------------------------------------------------------------------------------- 1 | This is a simple document. 2 | -------------------------------------------------------------------------------- /doc/examples/expose-files/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/expose-files/vortex.json -------------------------------------------------------------------------------- /doc/examples/mongodb-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/mongodb-helloworld/README.md -------------------------------------------------------------------------------- /doc/examples/mongodb-helloworld/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "roost-mongodb": "latest" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /doc/examples/mongodb-helloworld/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/mongodb-helloworld/vortex.json -------------------------------------------------------------------------------- /doc/examples/nodejs-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/nodejs-helloworld/README.md -------------------------------------------------------------------------------- /doc/examples/nodejs-helloworld/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/nodejs-helloworld/app.js -------------------------------------------------------------------------------- /doc/examples/nodejs-helloworld/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/nodejs-helloworld/vortex.json -------------------------------------------------------------------------------- /doc/examples/plugin-builtin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/plugin-builtin/README.md -------------------------------------------------------------------------------- /doc/examples/plugin-builtin/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/plugin-builtin/defaults.js -------------------------------------------------------------------------------- /doc/examples/plugin-builtin/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/plugin-builtin/vortex.json -------------------------------------------------------------------------------- /doc/examples/puppet-helloworld/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/puppet-helloworld/README.md -------------------------------------------------------------------------------- /doc/examples/puppet-helloworld/puppet/manifests/helloworld.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/puppet-helloworld/puppet/manifests/helloworld.pp -------------------------------------------------------------------------------- /doc/examples/puppet-helloworld/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/puppet-helloworld/vortex.json -------------------------------------------------------------------------------- /doc/examples/vortex-commander/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/vortex-commander/README.md -------------------------------------------------------------------------------- /doc/examples/vortex-commander/vortex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/doc/examples/vortex-commander/vortex.json -------------------------------------------------------------------------------- /lib/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/actions.js -------------------------------------------------------------------------------- /lib/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/download.js -------------------------------------------------------------------------------- /lib/engine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/engine.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/manifest.js -------------------------------------------------------------------------------- /lib/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/plugins.js -------------------------------------------------------------------------------- /lib/provider_amazon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/provider_amazon.js -------------------------------------------------------------------------------- /lib/provider_virtualbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/provider_virtualbox.js -------------------------------------------------------------------------------- /lib/providers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/providers.js -------------------------------------------------------------------------------- /lib/shell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/shell.js -------------------------------------------------------------------------------- /lib/vortex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/lib/vortex.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/package.json -------------------------------------------------------------------------------- /src/actions.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/actions.coffee -------------------------------------------------------------------------------- /src/download.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/download.coffee -------------------------------------------------------------------------------- /src/engine.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/engine.coffee -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/index.coffee -------------------------------------------------------------------------------- /src/manifest.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/manifest.coffee -------------------------------------------------------------------------------- /src/plugins.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/plugins.coffee -------------------------------------------------------------------------------- /src/provider_amazon.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/provider_amazon.coffee -------------------------------------------------------------------------------- /src/provider_virtualbox.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/provider_virtualbox.coffee -------------------------------------------------------------------------------- /src/providers.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/providers.coffee -------------------------------------------------------------------------------- /src/shell.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/shell.coffee -------------------------------------------------------------------------------- /src/vortex.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/websecurify/node-vortex/HEAD/src/vortex.coffee --------------------------------------------------------------------------------