Skip to content

Instantly share code, notes, and snippets.

@pavelk2
Created May 23, 2014 13:18
Show Gist options
  • Save pavelk2/ef875bbd83335dd515e4 to your computer and use it in GitHub Desktop.
Save pavelk2/ef875bbd83335dd515e4 to your computer and use it in GitHub Desktop.
import os
import socket
hostname = socket.gethostname()
print '----------------------------------'
print hostname
if hostname == "Codesign":
from settings_digitalocean import *
elif 'VCAP_SERVICES' in os.environ:
from settings_appfog import *
else:
from settings_local import *
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment