diff options
author | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-12-06 14:09:53 -0500 |
---|---|---|
committer | Aaron Bentley <abentley@panoramicfeedback.com> | 2005-12-06 14:09:53 -0500 |
commit | 3f678c4e0ba791054216cdb9fb25d1ccfd706737 (patch) | |
tree | 67886ac89dbe3f2a09be7d370be90d2636ae4421 | |
parent | b2dfdb3299495c33f44755aecf43c726b4482be0 (diff) | |
download | bugseverywhere-3f678c4e0ba791054216cdb9fb25d1ccfd706737.tar.gz |
Moved common settings into common.cfg
-rwxr-xr-x | beweb/beweb-start.py | 1 | ||||
-rw-r--r-- | beweb/common.cfg | 7 | ||||
-rw-r--r-- | beweb/dev.cfg | 7 | ||||
-rw-r--r-- | beweb/prod.cfg | 3 |
4 files changed, 8 insertions, 10 deletions
diff --git a/beweb/beweb-start.py b/beweb/beweb-start.py index 30c7de6..3f0f0a6 100755 --- a/beweb/beweb-start.py +++ b/beweb/beweb-start.py @@ -10,6 +10,7 @@ import sys # if it's not on the command line, then # look for setup.py in this directory. If it's not there, this script is # probably installed +cherrypy.config.update(file="common.cfg") if len(sys.argv) > 1: cherrypy.config.update(file=sys.argv[1]) elif exists(join(dirname(__file__), "setup.py")): diff --git a/beweb/common.cfg b/beweb/common.cfg new file mode 100644 index 0000000..50febb5 --- /dev/null +++ b/beweb/common.cfg @@ -0,0 +1,7 @@ +# This is where all of your settings go for your development environment +[/static] +staticFilter.on = True +staticFilter.dir = "static" +[/favicon.ico] +staticFilter.on = True +staticFilter.file = "static/images/favicon.ico" diff --git a/beweb/dev.cfg b/beweb/dev.cfg index b705228..4fd8903 100644 --- a/beweb/dev.cfg +++ b/beweb/dev.cfg @@ -32,10 +32,3 @@ server.environment="development" autoreload.package="beweb" - -[/static] -staticFilter.on = True -staticFilter.dir = "static" -[/favicon.ico] -staticFilter.on = True -staticFilter.file = "static/images/favicon.ico" diff --git a/beweb/prod.cfg b/beweb/prod.cfg index 27c7be9..21eb08e 100644 --- a/beweb/prod.cfg +++ b/beweb/prod.cfg @@ -31,6 +31,3 @@ server.logToScreen=False # to the TurboGears instance here # server.webpath="" -[/static] -staticFilter.on = True -staticFilter.dir = "static" |