-
Notifications
You must be signed in to change notification settings - Fork 1
/
fabfile.py
39 lines (31 loc) · 974 Bytes
/
fabfile.py
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
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Commands available to deploy using sixfeetup.deployment
"""
from fabric.api import env
# this is necessary to make the fabric commands available
from sixfeetup.deployment.commands import *
#########################
# General metadata
#########################
# This is the trac/svn/dist name
# Default: ""
env.project_name = "pwc"
# URL to the trac instance base
# Default: "https://trac.sixfeetup.com"
#env.trac_url_base = "
#########################
# packages
#########################
# Default release target. This is a jarn.mkrelease target name
# Default: "public"
dist_base = "dist.sixfeetup.com:/var/releases/dist/private"
env.default_release_target = "%s/%s" % (dist_base, env.project_name)
# This is a directory that contains the eggs we want to release
# Default: ['src']
#env.package_dirs = []
# List of package paths
# Default: []
#env.packages = []
# List of package paths names to ignore (e.g. 'my.package')
# Default: []
#env.ignore_dirs = []"