Files
edb-www/fabfile.py
Nikolai R Kristiansen 80cd4b8320 Bump and cleanups
2018-08-12 23:47:44 +02:00

12 lines
241 B
Python

from fabric.api import cd, env, run
env.use_ssh_config = True
env.hosts = ['dreamcast.neuf.no']
env.project_path = '/var/www/neuf.no/edb/edb-www'
env.user = 'gitdeploy'
def deploy():
with cd(env.project_path):
run('git pull')