X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=www%2Fmaps%2Fmaps%2Fwebsetup.py;fp=www%2Fmaps%2Fmaps%2Fwebsetup.py;h=5a3ab45cbe710fb6717055d63a2d0b9e8abac16a;hb=5485afbd4da2182072ef9756c65137729bf1eee5;hp=0000000000000000000000000000000000000000;hpb=a5341c314815ed4df97e2b0f94d05322660052cf;p=dead%2Fcensus-tools.git diff --git a/www/maps/maps/websetup.py b/www/maps/maps/websetup.py new file mode 100644 index 0000000..5a3ab45 --- /dev/null +++ b/www/maps/maps/websetup.py @@ -0,0 +1,10 @@ +"""Setup the maps application""" +import logging + +from maps.config.environment import load_environment + +log = logging.getLogger(__name__) + +def setup_app(command, conf, vars): + """Place any commands to setup maps here""" + load_environment(conf.global_conf, conf.local_conf)