Skip to content

Instantly share code, notes, and snippets.

@vanhtuan0409
Created October 31, 2019 08:41
Show Gist options
  • Save vanhtuan0409/f035758af9588ded8cace04846fa9188 to your computer and use it in GitHub Desktop.
Save vanhtuan0409/f035758af9588ded8cace04846fa9188 to your computer and use it in GitHub Desktop.
# config_live_env.py
URL = "https://now.vn"
# config_test_env.py
URL = "http://localhost"
# config.py
import os
env = os.environ.get("APP_ENV", "TEST")
if env == "LIVE":
from config_live_env import *
else:
from config_test_env import *
print(URL)
# command
# ENV=TEST python config.py
# ENV=LIVE python config.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment