File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ Not to be confused with [Tap](https://zeus.ugent.be/tap).
11
11
6 . Run ` ./bin/dev `
12
12
7 . Browse to [ http://localhost:3000 ] ( http://localhost:3000 )
13
13
14
+ Or, run ./setup.sh and go to step 6.
15
+
14
16
## Adding clients
15
17
16
18
A client can see and modify balances of other users.
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ # exit on error
4
+ set -e
5
+
6
+ # keep track of the last executed command
7
+ trap ' last_command=$current_command; current_command=$BASH_COMMAND' DEBUG
8
+ # echo an error message before exiting
9
+ trap ' echo "\"${last_command}\" command filed with exit code $?."' EXIT
10
+
11
+ asdf install
12
+ bundle
13
+ yarn
14
+ bundle exec rails db:setup
15
+ bundle exec rails db:migrate
16
+ bundle exec rails db:seed
You can’t perform that action at this time.
0 commit comments