mirror of
https://github.com/fluencelabs/tendermint
synced 2025-05-28 13:41:21 +00:00
9 lines
219 B
Bash
9 lines
219 B
Bash
|
#! /bin/bash
|
||
|
# This is a sample bash script for a TMSP application
|
||
|
|
||
|
cd app/
|
||
|
git clone https://github.com/tendermint/nomnomcoin.git
|
||
|
cd nomnomcoin
|
||
|
npm install .
|
||
|
|
||
|
node app.js --eyes="unix:///data/tendermint/data/data.sock"
|