We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae903e commit eb5eb52Copy full SHA for eb5eb52
run-keep-dashboard.sh
@@ -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