mirror of
https://github.com/dokku/dokku.git
synced 2026-02-23 19:50:34 +01:00
15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/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 "$@"
|