In the root directory, there is a file called core.py. I think near the top when declaring the variables, it is: `base_url = os.getenv('TARGET_URL')` But in env it is `BASE_URL` so I think it should be: `base_url = os.getenv('BASE_URL')`
In the root directory, there is a file called core.py. I think near the top when declaring the variables, it is:
base_url = os.getenv('TARGET_URL')But in env it is
BASE_URLso I think it should be:base_url = os.getenv('BASE_URL')