Skip to content

Commit

Permalink
Development (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
arseniiarsenii authored Jul 29, 2022
1 parent afb2f12 commit f872a9e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
feecc_workbench_daemon:
environment:
# Use these environment variables to configure your deployment
DB_MONGO_CONNECTION_URI: "" # Your MongoDB connection URI
MONGODB_URI: "" # Your MongoDB connection URI
ROBONOMICS_ENABLE_DATALOG: "no" # Whether to enable datalog posting or not
ROBONOMICS_ACCOUNT_SEED: "" # Your Robonomics network account seed phrase
ROBONOMICS_SUBSTRATE_NODE_URI: "no" # Robonomics network node URI
Expand Down
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Clone this repository from GitHub using the `git clone` command.
Go to the repository folder and change the `docker-compose.yml` file to suit your needs. The configuration
is defined by a number of environment variables:

- **DB_MONGO_CONNECTION_URL** (Required): Your MongoDB connection URI
- **MONGODB_URI** (Required): Your MongoDB connection URI
- **ROBONOMICS_ENABLE_DATALOG** (Optional): Whether to enable datalog posting or not
- **ROBONOMICS_ACCOUNT_SEED** (Optional): Your Robonomics network account seed phrase
- **ROBONOMICS_SUBSTRATE_NODE_URL** (Optional): Robonomics network node URI
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "Feecc-Workbench-Daemon"
version = "1.3.0"
version = "1.3.1"
description = "Workbench software for the Feecc QA system"
authors = ["arseniiarsenii <arseniivelichko2@gmail.com>"]
license = "Apache 2.0"
Expand Down
2 changes: 1 addition & 1 deletion src/feecc_workbench/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
class AppConfig:
@environ.config(frozen=True)
class MongoDB:
mongo_connection_uri: str = environ.var(help="Your MongoDB connection URI")
mongo_connection_uri: str = environ.var(name="MONGODB_URI", help="Your MongoDB connection URI")

@environ.config(frozen=True)
class RobonomicsNetwork:
Expand Down

0 comments on commit f872a9e

Please sign in to comment.