I need to programatically determine if my app is running in development or not, so that I can provide sandbox values for a variety of constants and methods.
Something li
import os DEV = os.environ['SERVER_SOFTWARE'].startswith('Development')