mirror of
https://github.com/Permissionless-Software-Foundation/bch-dex.git
synced 2026-09-22 01:02:00 -07:00
23 lines
612 B
Bash
Executable File
23 lines
612 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script is an example for running a generic ipfs-service-provider instance.
|
|
|
|
# Ports
|
|
export PORT=5001 # REST API port
|
|
export IPFS_TCP_PORT=5268
|
|
export IPFS_WS_PORT=5269
|
|
|
|
# The human-readible name that is used when displaying data about this node.
|
|
export COORD_NAME=ipfs-service-provider-generic
|
|
|
|
# This is used for end-to-end encryption (e2ee).
|
|
export MNEMONIC="churn aisle shield silver ladder swear hunt slim pen demand spoil veteran"
|
|
|
|
# 0 = less verbose. 3 = most verbose
|
|
export DEBUG_LEVEL=1
|
|
|
|
# MongoDB connection string.
|
|
#export DBURL=mongodb://localhost:27017/bch-service-dev
|
|
|
|
npm start
|