diff --git a/modules/config.py b/modules/config.py index 45bdbc7..33cdfc9 100644 --- a/modules/config.py +++ b/modules/config.py @@ -1,3 +1,4 @@ +import os """ Configuration module for PyFRC2G """ @@ -6,8 +7,8 @@ GATEWAY_TYPE = "pfsense" # pfSense Configuration -PFS_BASE_URL = "https://" -PFS_TOKEN = "" +PFS_BASE_URL = os.environ.get("PFS_BASE_URL") +PFS_TOKEN = os.environ.get("PFS_TOKEN") # OPNSense Configuration OPNS_BASE_URL = "https://"