1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# where is the bazaar branch located, and what should we call it?
folder='/Users/robey/code/bzr/bzr.dev'
branch_name='bzr.dev'
# should we cache revisions? (HIGHLY recommended) where?
# this will be a folder containing a couple of files. if the folder
# doesn't already exist, we'll create it.
cachepath='/Users/robey/code/bzr/bzr.dev/.bzr/loggerhead-cache'
# what url should i use in the atom feed, for external sites?
external_url="http://localhost:8080"
# where's bzrlib?
bzrpath='/Users/robey/code/bzr/bzr'
|