Files

23 lines
612 B
Bash
Raw Permalink Normal View History

2021-09-17 11:17:10 -07:00
#!/bin/bash
# This script is an example for running a generic ipfs-service-provider instance.
2021-09-17 11:17:10 -07:00
# Ports
2021-12-02 13:51:07 -08:00
export PORT=5002 # REST API port
2021-09-17 11:17:10 -07:00
export IPFS_TCP_PORT=5268
export IPFS_WS_PORT=5269
# The human-readible name that is used when displaying data about this node.
2021-09-17 12:22:05 -07:00
export COORD_NAME=ipfs-service-provider-generic
# This is used for end-to-end encryption (e2ee).
2021-09-17 11:17:10 -07:00
export MNEMONIC="churn aisle shield silver ladder swear hunt slim pen demand spoil veteran"
# 0 = less verbose. 3 = most verbose
2021-09-17 11:17:10 -07:00
export DEBUG_LEVEL=1
# MongoDB connection string.
#export DBURL=mongodb://localhost:27017/bch-service-dev
2021-09-17 11:17:10 -07:00
npm start