1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
from fabric.api import *
import fabric.contrib.project as project
import os
PROD = 'stacktrace.org'
DEST_PATH = '/home/mixxx/public_html/manual/1.10'
ROOT_PATH = os.path.abspath(os.path.dirname(__file__))
DEPLOY_PATH = os.path.join(ROOT_PATH, 'build/html')
def clean():
local('make clean')
def regen():
clean()
local('make html')
@hosts(PROD)
def publish():
regen()
project.rsync_project(
remote_dir=DEST_PATH,
local_dir=DEPLOY_PATH.rstrip('/') + '/',
delete=True
)
|