-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1a52b19
commit 414914b
Showing
4 changed files
with
26 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
#!/usr/bin/env fish | ||
|
||
wash app delete ./wadm.yaml | ||
wash down --all | ||
|
||
pushd /tmp | ||
if test -f wash-ui.pid | ||
set PID (cat wash-ui.pid) | ||
rm -f wash-ui.pid wash-ui.out | ||
if test -n "$PID" | ||
kill $PID | ||
end | ||
end | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env fish | ||
|
||
wash app deploy ./wadm.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#!/usr/bin/env fish | ||
|
||
wash app delete ./wadm.yaml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
#!/usr/bin/env fish | ||
|
||
wash app deploy ./wadm.yaml | ||
wash up -d | ||
|
||
pushd /tmp | ||
status job-control full | ||
nohup wash ui > wash-ui.out & | ||
cat wash-ui.out | ||
set PID $last_pid | ||
echo $PID > wash-ui.pid | ||
popd |