We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b4a8b1 commit 1cbd965Copy full SHA for 1cbd965
README.md
@@ -29,8 +29,12 @@ cp .env.example .env
29
cp chains.json.example chains.json
30
# add chains / mnemonics you want to use. On start, you can view addresses via http://ip:port/<chain_id>
31
32
-npm install
33
-
+# local
34
npm run start
35
+# prod
36
+npm i pm2 --global
37
+pm2 start src/index.ts --name faucet --watch --interpreter ./node_modules/.bin/ts-node
38
+# pm2 logs
39
+# pm2 stop faucet
40
```
0 commit comments