From: Aaron Bentley Date: Sat, 3 Dec 2005 22:52:49 +0000 (-0500) Subject: Changed the shipping configuration file into an example. X-Git-Tag: 1.0.0~270 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c51060864bdc774b6ad118f6319ad7c0c4a4815a;p=be.git Changed the shipping configuration file into an example. --- 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"), + }