File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ services:
33 feecc_workbench_daemon :
44 environment :
55 # Use these environment variables to configure your deployment
6- DB_MONGO_CONNECTION_URI : " " # Your MongoDB connection URI
6+ MONGODB_URI : " " # Your MongoDB connection URI
77 ROBONOMICS_ENABLE_DATALOG : " no" # Whether to enable datalog posting or not
88 ROBONOMICS_ACCOUNT_SEED : " " # Your Robonomics network account seed phrase
99 ROBONOMICS_SUBSTRATE_NODE_URI : " no" # Robonomics network node URI
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ Clone this repository from GitHub using the `git clone` command.
2222Go to the repository folder and change the ` docker-compose.yml ` file to suit your needs. The configuration
2323is defined by a number of environment variables:
2424
25- - ** DB_MONGO_CONNECTION_URL ** (Required): Your MongoDB connection URI
25+ - ** MONGODB_URI ** (Required): Your MongoDB connection URI
2626- ** ROBONOMICS_ENABLE_DATALOG** (Optional): Whether to enable datalog posting or not
2727- ** ROBONOMICS_ACCOUNT_SEED** (Optional): Your Robonomics network account seed phrase
2828- ** ROBONOMICS_SUBSTRATE_NODE_URL** (Optional): Robonomics network node URI
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " Feecc-Workbench-Daemon"
3- version = " 1.3.0 "
3+ version = " 1.3.1 "
44description = " Workbench software for the Feecc QA system"
55authors = [" arseniiarsenii <arseniivelichko2@gmail.com>" ]
66license = " Apache 2.0"
Original file line number Diff line number Diff line change 1515class AppConfig :
1616 @environ .config (frozen = True )
1717 class MongoDB :
18- mongo_connection_uri : str = environ .var (help = "Your MongoDB connection URI" )
18+ mongo_connection_uri : str = environ .var (name = "MONGODB_URI" , help = "Your MongoDB connection URI" )
1919
2020 @environ .config (frozen = True )
2121 class RobonomicsNetwork :
You can’t perform that action at this time.
0 commit comments