import os

if os.uname()[1] == 'incubator': # incubator being the name of my production machine
	from settings_prod import *
else:
	from settings_dev import *