Starting fab tasks

master
Nick Sergeant 2011-10-23 23:07:59 -04:00
parent 2753bc9e98
commit 065a755072
2 changed files with 9 additions and 2 deletions

4
snipt/fabfile.py vendored Normal file
View File

@ -0,0 +1,4 @@
from fabric.api import local
def deploy():
print 'hi'

View File

@ -1,8 +1,11 @@
# Django settings for sidepros project.
import os
import os, socket
DEBUG = True
if socket.gethostname() == 'nickmba.local':
DEBUG = True
else:
DEBUG = False
TEMPLATE_DEBUG = DEBUG
BASE_PATH = os.path.dirname(__file__)