Skip to content

Commit f872a9e

Browse files
Development (#24)
1 parent afb2f12 commit f872a9e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Clone this repository from GitHub using the `git clone` command.
2222
Go to the repository folder and change the `docker-compose.yml` file to suit your needs. The configuration
2323
is 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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "Feecc-Workbench-Daemon"
3-
version = "1.3.0"
3+
version = "1.3.1"
44
description = "Workbench software for the Feecc QA system"
55
authors = ["arseniiarsenii <arseniivelichko2@gmail.com>"]
66
license = "Apache 2.0"

src/feecc_workbench/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
class 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:

0 commit comments

Comments
 (0)