Cleanup and commenting on environment variables

This commit is contained in:
Leopere 2018-11-04 20:39:55 -05:00
parent ded07ec9a1
commit 3dbbcd05c1

View file

@ -1,13 +1,17 @@
COMPOSE_PROJECT_NAME=chainquery
## Currently unused until start.sh gains magic powers.
RPC_USER=lbryrpc
RPC_PASSWORD=changeme
## This should be the internal container IP from which you'll be calling the RPC for Lbrycrdd from.
RPC_ALLOW_IP=10.5.1.3
## Mysql Creds to be shared between Chainquery and Mysql container
MYSQL_SERVER=10.5.1.10
MYSQL_USER=changeme
MYSQL_PASSWORD=changeme
MYSQL_DATABASE=chainquery
MYSQL_ROOT_PASSWORD=changeme
#########################
## Chainquery Settings ##
#########################
RPC_USER=lbryrpc ## Not super necessery to change this.
RPC_PASSWORD=changeme ## Please replace changeme.
RPC_ALLOW_IP=10.5.1.3 ## You're better off not changing this.
#################
## Mysql Creds ##
#################
MYSQL_SERVER=10.5.1.10 ## You're better off not changing this.
MYSQL_USER=changeme ## This could be changed.
MYSQL_PASSWORD=changeme ## This could be set to something random it sets this string for both Mysql's main user and Chainquery's MysqlDSN.
MYSQL_DATABASE=chainquery ## This can stay the same.
MYSQL_ROOT_PASSWORD=changeme ## Set this to something random and obnoxious we're not using it.