1
0
Fork 0
gnuviechadminweb-historic/gnuviechadminweb/websetup.py

15 lines
435 B
Python

"""Setup the gnuviechadminweb application"""
import logging
from paste.deploy import appconfig
from pylons import config
from gnuviechadminweb.config.environment import load_environment
log = logging.getLogger(__name__)
def setup_config(command, filename, section, vars):
"""Place any commands to setup gnuviechadminweb here"""
conf = appconfig('config:' + filename)
load_environment(conf.global_conf, conf.local_conf)