* refactors settings into env usage * adds proxy usage for schneider parcel fetching (using public web address instead of internal ip address)
13 lines
364 B
Python
13 lines
364 B
Python
"""
|
|
Author: Michel Peltriaux
|
|
Organization: Struktur- und Genehmigungsdirektion Nord, Rhineland-Palatinate, Germany
|
|
Contact: ksp-servicestelle@sgdnord.rlp.de
|
|
Created on: 14.12.22
|
|
|
|
"""
|
|
from konova.sub_settings.django_settings import env
|
|
|
|
base_url = env("SCHNEIDER_BASE_URL")
|
|
auth_header = env("SCHNEIDER_AUTH_HEADER")
|
|
auth_header_token = env("SCHNEIDER_AUTH_TOKEN")
|