blob: 8c73fba6f0700fb6a9381e2411991ce5832646b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import os
base = os.path.dirname(__file__)
dest = os.path.join(os.path.dirname(os.path.dirname(base)), 'htdocs')
deploy_base = '/home/paste/Paste-Deploy'
dirs[base] = os.path.join(dest, 'docs')
dirs[os.path.join(base, 'web')] = dest
dirs[os.path.join(base, 'web', 'community')] = os.path.join(dest, 'community')
dirs[os.path.join(base, 'web', 'download')] = os.path.join(dest, 'download')
dirs[os.path.join(deploy_base, 'docs')] = os.path.join(dest, 'deploy')
template = os.path.join(base, 'template.tmpl')
|