-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathMakefile
More file actions
37 lines (23 loc) · 757 Bytes
/
Makefile
File metadata and controls
37 lines (23 loc) · 757 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
ps:
ps aux | grep -v grep | grep chainspace | awk '{print $$2 " " $$11 " " $$12 " " $$13}'
check-port:
lsof -i :$(port)
list-nodes:
screen -list
build-jar:
cd chainspacecore && mvn -Dversion=1.0-SNAPSHOT package assembly:single
dist:
./contrib/core-tools/build-node-dist.sh
start-nodes:
./contrib/core-tools/easystart.mac.sh
start-nodes-debug:
./contrib/core-tools/easystart.mac.debug.sh
tail-node:
tail -f chainspacecore-0-0/screenlog.0
start-client-api:
cd chainspacecore && ./runclientservice.sh
path=/
curl-client-api:
curl -v -H "Accept: application/json" -H "Content-Type: application/json" http://localhost:5000/api/1.0$(path) && echo "\n\n"
kill-all:
ps aux | grep -v grep | grep chainspace | awk '{print $$2}' | xargs kill