├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Procfile ├── README.md ├── app.rb ├── app.yml ├── config.ru ├── config.yml ├── config.yml.example ├── installer.rb ├── public ├── .gitkeep ├── button.svg └── images │ ├── install_page.png │ └── status_page.png ├── regions.json ├── sizes.json └── views ├── add_ssh_key.haml ├── error_generic.haml ├── error_getting_config.haml ├── error_parsing_config.haml ├── error_parsing_url.haml ├── index.haml ├── install.haml ├── layout.haml ├── status.haml └── terms.haml /.gitignore: -------------------------------------------------------------------------------- 1 | log 2 | tmp 3 | .bundle 4 | -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | do-install-button -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.3.7 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: bundle exec rackup config.ru -p $PORT 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/README.md -------------------------------------------------------------------------------- /app.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/app.rb -------------------------------------------------------------------------------- /app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/app.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/config.ru -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/config.yml -------------------------------------------------------------------------------- /config.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/config.yml.example -------------------------------------------------------------------------------- /installer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/installer.rb -------------------------------------------------------------------------------- /public/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/public/button.svg -------------------------------------------------------------------------------- /public/images/install_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/public/images/install_page.png -------------------------------------------------------------------------------- /public/images/status_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/public/images/status_page.png -------------------------------------------------------------------------------- /regions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/regions.json -------------------------------------------------------------------------------- /sizes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/sizes.json -------------------------------------------------------------------------------- /views/add_ssh_key.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/add_ssh_key.haml -------------------------------------------------------------------------------- /views/error_generic.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/error_generic.haml -------------------------------------------------------------------------------- /views/error_getting_config.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/error_getting_config.haml -------------------------------------------------------------------------------- /views/error_parsing_config.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/error_parsing_config.haml -------------------------------------------------------------------------------- /views/error_parsing_url.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/error_parsing_url.haml -------------------------------------------------------------------------------- /views/index.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/index.haml -------------------------------------------------------------------------------- /views/install.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/install.haml -------------------------------------------------------------------------------- /views/layout.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/layout.haml -------------------------------------------------------------------------------- /views/status.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/status.haml -------------------------------------------------------------------------------- /views/terms.haml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seven1m/do-install-button/HEAD/views/terms.haml --------------------------------------------------------------------------------