X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/46fdcc29313a6c0dd897b8060335061f433897fd..4fcc3a4ab9a5d0eee84eda6b5523e0e010e995de:/fabfile.py

diff --git a/fabfile.py b/fabfile.py
index 6304aaea..6738894d 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -1,21 +1,2 @@
-from __future__ import with_statement
-from fabric.api import *
-
-
-def staging():
-    '''Use staging server'''
-    env.hosts = ['platforma@stigma.nowoczesnapolska.org.pl:2222']
-    env.project_dir = '/home/platforma/platforma'
-
-def deploy():
-    '''Deploy server'''
-    require('project_dir', provided_by=['staging'])
-    with cd(env.project_dir):
-        run('git pull')
-        run('./project/manage.py syncdb')
-    restart_server()
-
-def restart_server():
-    with cd(env.project_dir):
-        run('touch project/dispatch.wsgi')
-
+from fnpdjango.deploy import *
+from deployment.environments import *