Files
NetTrak/app/config.py
Keith Solomon 9fb58a9677 Initial commit
2026-03-08 15:06:50 -05:00

6 lines
203 B
Python

import os
DB_PATH = os.getenv("NETTRAK_DB_PATH", "/data/nettrak.db")
DEFAULT_SUBNET = os.getenv("NETTRAK_SUBNET", "192.168.2.0/24")
SCAN_TIMEOUT_SECONDS = int(os.getenv("NETTRAK_SCAN_TIMEOUT", "1800"))