This commit is contained in:
callebtc
2022-09-13 16:06:40 +03:00
parent 18d955e4f0
commit e18021cb9e
8 changed files with 472 additions and 99 deletions

View File

@@ -1 +1,11 @@
from environs import Env # type: ignore
env = Env()
env.read_env()
DEBUG = env.bool("DEBUG", default=False)
MINT_HOST = env.str("MINT_HOST", default="127.0.0.1")
MINT_PORT = env.int("MINT_PORT", default=3338)
MAX_ORDER = 64