Files @ 047f40deac29
Branch filter:

Location: NPO-Accounting/experimental-accounting-api/accounting/config.py

Joar Wandborg
Added requests to requirements.txt
1
2
3
4
5
6
import os

LEDGER_FILE = os.environ.get('LEDGER_FILE', None)
DEBUG = bool(int(os.environ.get('DEBUG', 0)))
PORT = int(os.environ.get('PORT', 5000))
HOST = os.environ.get('HOST', '127.0.0.1')