aboutsummaryrefslogtreecommitdiffstats
path: root/beweb
diff options
context:
space:
mode:
authorAaron Bentley <aaron.bentley@utoronto.ca>2005-12-03 17:52:49 -0500
committerAaron Bentley <aaron.bentley@utoronto.ca>2005-12-03 17:52:49 -0500
commitc51060864bdc774b6ad118f6319ad7c0c4a4815a (patch)
tree260513a2ed348ccfc3c47a1d638cafc47964a903 /beweb
parentf34550b8a50156f2fce49da473d89cd4f69d27ae (diff)
downloadbugseverywhere-c51060864bdc774b6ad118f6319ad7c0c4a4815a.tar.gz
Changed the shipping configuration file into an example.
Diffstat (limited to 'beweb')
-rw-r--r--beweb/beweb/config.py4
-rw-r--r--beweb/beweb/config.py.example10
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"),
+ }