15 lines
343 B
Python
15 lines
343 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"
|
|
|
|
command_prefix = "$"
|
|
|
|
api_key = "Your Discord API Key"
|