├── .cakebox ├── .gitignore ├── LICENSE.txt ├── VERSION.txt ├── Vagrantfile.rb ├── backups │ └── README.md ├── bash │ ├── README.md │ ├── backup-installer.sh │ ├── check-ssh-agent.sh │ ├── console-installer.sh │ ├── logger.sh │ ├── motd-updater.sh │ ├── ssh-authentication.sh │ └── ubuntu-16.sh └── templates │ ├── .multibackup.conf │ ├── aliases │ └── motd-20-cakebox-banner ├── .editorconfig ├── .gitattributes ├── .gitignore ├── .rubocop.yml ├── .travis.yml ├── Cakebox.yaml.default ├── Gemfile ├── README.md ├── Vagrantfile ├── abandoned-repo.png ├── docs ├── .editorconfig ├── .gitignore └── sources │ ├── additional │ ├── contributing.md │ ├── credentials.md │ └── known-limitations.md │ ├── features.md │ ├── img │ ├── box-software.png │ ├── cakebox-commands.png │ ├── cakebox-dashboard.png │ ├── cakebox-overview.png │ ├── fresh-install-cake3.png │ ├── icon-fail.png │ ├── icon-success.png │ ├── pageant-key-list.png │ └── provision-ssh-sanity-check.png │ ├── index.md │ ├── quickstart.md │ ├── tutorials │ ├── connecting-to-your-box.md │ ├── connecting-to-your-databases.md │ ├── connecting-your-github-ssh-key.md │ ├── creating-your-first-website.md │ ├── hardening-box-authentication.md │ └── updating-your-box.md │ └── usage │ ├── backups.md │ ├── cakebox-commands.md │ ├── cakebox-yaml.md │ ├── hosts-file.md │ └── logs.md └── mkdocs.yml /.cakebox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/.gitignore -------------------------------------------------------------------------------- /.cakebox/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/LICENSE.txt -------------------------------------------------------------------------------- /.cakebox/VERSION.txt: -------------------------------------------------------------------------------- 1 | cakebox 1.0-alpha3 2 | -------------------------------------------------------------------------------- /.cakebox/Vagrantfile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/Vagrantfile.rb -------------------------------------------------------------------------------- /.cakebox/backups/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/backups/README.md -------------------------------------------------------------------------------- /.cakebox/bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/README.md -------------------------------------------------------------------------------- /.cakebox/bash/backup-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/backup-installer.sh -------------------------------------------------------------------------------- /.cakebox/bash/check-ssh-agent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/check-ssh-agent.sh -------------------------------------------------------------------------------- /.cakebox/bash/console-installer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/console-installer.sh -------------------------------------------------------------------------------- /.cakebox/bash/logger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/logger.sh -------------------------------------------------------------------------------- /.cakebox/bash/motd-updater.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/motd-updater.sh -------------------------------------------------------------------------------- /.cakebox/bash/ssh-authentication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/ssh-authentication.sh -------------------------------------------------------------------------------- /.cakebox/bash/ubuntu-16.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/bash/ubuntu-16.sh -------------------------------------------------------------------------------- /.cakebox/templates/.multibackup.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/templates/.multibackup.conf -------------------------------------------------------------------------------- /.cakebox/templates/aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/templates/aliases -------------------------------------------------------------------------------- /.cakebox/templates/motd-20-cakebox-banner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.cakebox/templates/motd-20-cakebox-banner -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.gitignore -------------------------------------------------------------------------------- /.rubocop.yml: -------------------------------------------------------------------------------- 1 | Metrics/LineLength: 2 | Enabled: false 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cakebox.yaml.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/Cakebox.yaml.default -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/Vagrantfile -------------------------------------------------------------------------------- /abandoned-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/abandoned-repo.png -------------------------------------------------------------------------------- /docs/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/.editorconfig -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore these files and folders 2 | 3 | site/ 4 | -------------------------------------------------------------------------------- /docs/sources/additional/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/additional/contributing.md -------------------------------------------------------------------------------- /docs/sources/additional/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/additional/credentials.md -------------------------------------------------------------------------------- /docs/sources/additional/known-limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/additional/known-limitations.md -------------------------------------------------------------------------------- /docs/sources/features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/features.md -------------------------------------------------------------------------------- /docs/sources/img/box-software.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/box-software.png -------------------------------------------------------------------------------- /docs/sources/img/cakebox-commands.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/cakebox-commands.png -------------------------------------------------------------------------------- /docs/sources/img/cakebox-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/cakebox-dashboard.png -------------------------------------------------------------------------------- /docs/sources/img/cakebox-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/cakebox-overview.png -------------------------------------------------------------------------------- /docs/sources/img/fresh-install-cake3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/fresh-install-cake3.png -------------------------------------------------------------------------------- /docs/sources/img/icon-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/icon-fail.png -------------------------------------------------------------------------------- /docs/sources/img/icon-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/icon-success.png -------------------------------------------------------------------------------- /docs/sources/img/pageant-key-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/pageant-key-list.png -------------------------------------------------------------------------------- /docs/sources/img/provision-ssh-sanity-check.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/img/provision-ssh-sanity-check.png -------------------------------------------------------------------------------- /docs/sources/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/index.md -------------------------------------------------------------------------------- /docs/sources/quickstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/quickstart.md -------------------------------------------------------------------------------- /docs/sources/tutorials/connecting-to-your-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/connecting-to-your-box.md -------------------------------------------------------------------------------- /docs/sources/tutorials/connecting-to-your-databases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/connecting-to-your-databases.md -------------------------------------------------------------------------------- /docs/sources/tutorials/connecting-your-github-ssh-key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/connecting-your-github-ssh-key.md -------------------------------------------------------------------------------- /docs/sources/tutorials/creating-your-first-website.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/creating-your-first-website.md -------------------------------------------------------------------------------- /docs/sources/tutorials/hardening-box-authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/hardening-box-authentication.md -------------------------------------------------------------------------------- /docs/sources/tutorials/updating-your-box.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/tutorials/updating-your-box.md -------------------------------------------------------------------------------- /docs/sources/usage/backups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/usage/backups.md -------------------------------------------------------------------------------- /docs/sources/usage/cakebox-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/usage/cakebox-commands.md -------------------------------------------------------------------------------- /docs/sources/usage/cakebox-yaml.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/usage/cakebox-yaml.md -------------------------------------------------------------------------------- /docs/sources/usage/hosts-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/usage/hosts-file.md -------------------------------------------------------------------------------- /docs/sources/usage/logs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/docs/sources/usage/logs.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alt3/cakebox/HEAD/mkdocs.yml --------------------------------------------------------------------------------