├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── commands ├── install └── plugin.toml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Benjamin-Dobell] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/README.md -------------------------------------------------------------------------------- /commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/commands -------------------------------------------------------------------------------- /install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/install -------------------------------------------------------------------------------- /plugin.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/glassechidna/dokku-graduate/HEAD/plugin.toml --------------------------------------------------------------------------------