├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── appify-icon.png ├── main.go ├── main_test.go ├── preview2.png └── testdata ├── app.go └── machina-square.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/README.md -------------------------------------------------------------------------------- /appify-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/appify-icon.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/main_test.go -------------------------------------------------------------------------------- /preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/preview2.png -------------------------------------------------------------------------------- /testdata/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/testdata/app.go -------------------------------------------------------------------------------- /testdata/machina-square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/machinebox/appify/HEAD/testdata/machina-square.png --------------------------------------------------------------------------------