Mercurial > public > src > rhodecode
annotate pylons_app/websetup.py @ 0:564e40829f80
initial commit.
author | Marcin Kuzminski |
---|---|
date | Thu, 18 Feb 2010 13:01:57 +0100 |
parents | |
children | 0e87466a117e |
rev | line source |
---|---|
0 | 1 """Setup the pylons_app application""" |
2 import logging | |
3 from pylons_app.config.environment import load_environment | |
4 log = logging.getLogger(__name__) | |
5 | |
6 | |
7 def setup_app(command, conf, vars): | |
8 """Place any commands to setup pylons_app here""" | |
9 load_environment(conf.global_conf, conf.local_conf) |