Files
market/market/settings/defaults.py
Alek Ratzloff a61ad46b49 Initial commit
Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
2020-01-15 20:15:14 -05:00

19 lines
526 B
Python

# Whether an invitation is required to join.
TRADING_INVITE_REQUIRED = True
# Number of invites that a user gets when they sign up.
TRADING_FREE_INVITES = 3
# Number of accounts that a new user is allowed to create.
# Use `None` for unlimited.
TRADING_FREE_ACCOUNTS = 5
# Number of commodities that a user gets when they sign up.
TRADING_FREE_COMMODITIES = 1
# Maximum number of commodities allowed for a single IPO
TRADING_IPO_MAX = 5000000
# Minimum number of commodities allowed for a single IPO
TRADING_IPO_MIN = 100