├── .gitignore ├── LICENSE ├── README.md ├── bin └── scw ├── index.js ├── interactive-cli.js ├── package.json └── pres.png /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | *.tar.gz 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/README.md -------------------------------------------------------------------------------- /bin/scw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/bin/scw -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/index.js -------------------------------------------------------------------------------- /interactive-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/interactive-cli.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/package.json -------------------------------------------------------------------------------- /pres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Unitech/scaleway-commander/HEAD/pres.png --------------------------------------------------------------------------------