Created
October 31, 2019 08:41
-
-
Save vanhtuan0409/f035758af9588ded8cace04846fa9188 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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