Skip to content

Commit eb5eb52

Browse files
committed
Added script to run keep dashboard
1 parent eae903e commit eb5eb52

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

run-keep-dashboard.sh

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/bin/bash
2+
3+
set -e
4+
5+
LOG_START='\n\e[1;36m' # new line + bold + color
6+
LOG_END='\n\e[0m' # new line + reset color
7+
DONE_START='\n\e[1;32m' # new line + bold + green
8+
DONE_END='\n\n\e[0m' # new line + reset
9+
10+
WORKDIR=$PWD
11+
12+
printf "${LOG_START}Starting Keep Dashboard...${LOG_END}"
13+
14+
cd $WORKDIR/keep-core/solidity/dashboard
15+
16+
npm run start

0 commit comments

Comments
 (0)