stock-tracker-discord/config.example.py
socks a893cc1c04 Moved flatfile database to flatfile.py
Added mongodb connection settings to config
Updated config format
2021-03-08 13:34:51 +00:00

13 lines
321 B
Python

# fmt:off
# MongoDB is recommended but not required
use_mongodb = False
# Set filename for flat file database
database = "stonks.txt"
# For URI info see https://docs.mongodb.com/manual/reference/connection-string/
mongodb_uri = "mongodb://localhost:27017"
mongodb_database = "stonks"
api_key = "Your Discord API Key"