feat: add a helper binary to deploy a test app for local development

This commit is contained in:
Jose Diaz-Gonzalez
2024-02-24 23:46:15 -05:00
parent 2a65e25ccf
commit a75c464614

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
main() {
declare APP="${1:-test}"
if ! dokku apps:exists $APP; then
dokku apps:create $APP
fi
dokku builder-herokuish:set $APP allowed true
dokku git:sync --build $APP https://github.com/dokku/smoke-test-app.git
}
main "$@"