diff --git a/dist/index.html b/dist/index.html index f9f6b04..d4e93a3 100644 --- a/dist/index.html +++ b/dist/index.html @@ -6,7 +6,7 @@ - +
diff --git a/fabfile.py b/fabfile.py new file mode 100644 index 0000000..96139d6 --- /dev/null +++ b/fabfile.py @@ -0,0 +1,13 @@ +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') + # run('yarn') + # run('gulp')