├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md └── bootstrap.sh /.gitignore: -------------------------------------------------------------------------------- 1 | license.* 2 | */*.retry 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisnetworks/apiscp-bootstrapper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisnetworks/apiscp-bootstrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisnetworks/apiscp-bootstrapper/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apisnetworks/apiscp-bootstrapper/HEAD/bootstrap.sh --------------------------------------------------------------------------------