Separate base URL to a code change

This commit is contained in:
Ian Naval 2019-01-25 18:51:53 -05:00
parent 851b57a7e7
commit 178ffab9a6

View File

@ -24,9 +24,9 @@ LOGGING_CONFIG = {
},
},
}
BASE_URL = 'https://ecac.aerocalendar.com'
TIME_ZONE = 'America/New_York' # of the club
BASE_URL = os.environ.get('AUTOPILOT_BASE_URL')
USERNAME = os.environ.get('AUTOPILOT_USERNAME')
PASSWORD = os.environ.get('AUTOPILOT_PASSWORD')
USER_ID = os.environ.get('AUTOPILOT_USER_ID')