diff options
Diffstat (limited to 'beweb')
-rw-r--r-- | beweb/beweb/config.py | 4 | ||||
-rw-r--r-- | beweb/beweb/config.py.example | 10 |
2 files changed, 10 insertions, 4 deletions
diff --git a/beweb/beweb/config.py b/beweb/beweb/config.py deleted file mode 100644 index 063b977..0000000 --- a/beweb/beweb/config.py +++ /dev/null @@ -1,4 +0,0 @@ -projects = {"be": ("Bugs Everywhere","/home/abentley/be"), - "devel": ("PF Devel","/home/abentley/devel"), - "release": ("PF Release","/home/abentley/release"), -} diff --git a/beweb/beweb/config.py.example b/beweb/beweb/config.py.example new file mode 100644 index 0000000..8745c6d --- /dev/null +++ b/beweb/beweb/config.py.example @@ -0,0 +1,10 @@ +# This is an example beweb configuration file. + +# One thing we need is a map of projects. Projects have a beweb ID, a path, +# and a display name. + +# In this example, the 'be' beweb ID is assigned the display name "Bugs +# Everywhere" and the path "/home/abentley/be" + +projects = {"be": ("Bugs Everywhere","/home/abentley/be"), + } |