X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/aee39efde819f0381a7aa65bc32145d2709cf088..fccc8f3f1d58b2bc819faece3a5d18b9ba5e873e:/fabfile.py

diff --git a/fabfile.py b/fabfile.py
index c06c50b5..6738894d 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -1,19 +1,2 @@
-from fabric.api import run, local, settings, abort, env, cd, require, abort
-
-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 *