This commit is contained in:
osiris account 2023-03-12 13:16:49 -07:00
parent 6fd3fe78cb
commit 643531f284

View file

@ -27,7 +27,10 @@ OUTPUT_DIR = ./output
#########################
##### mongodb settings
#########################
MONGDB_URI = mongodb://localhost:27017
## locally: mongodb://localhost:27017
## production: mongodb://user:password@host:port
MONGODB_URI = mongodb://localhost:27017
MONGODB_DB_NAME = balances
MONGODB_COLLECTION_NAME = balances
@ -35,5 +38,8 @@ MONGODB_COLLECTION_NAME = balances
#########################
##### api settings
#########################
## locally: http://localhost:80
## production: http://host:port
API_HOST_URL = http://localhost
API_HOST_URL_PORT = 80