├── LICENSE ├── LICENSE.txt ├── README.md └── bin ├── compile ├── detect └── version /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metabase/metabase-buildpack/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metabase/metabase-buildpack/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metabase/metabase-buildpack/HEAD/README.md -------------------------------------------------------------------------------- /bin/compile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/metabase/metabase-buildpack/HEAD/bin/compile -------------------------------------------------------------------------------- /bin/detect: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | echo "Metabase" 4 | exit 0 -------------------------------------------------------------------------------- /bin/version: -------------------------------------------------------------------------------- 1 | 0.45.3 2 | --------------------------------------------------------------------------------