Removed account model and back with user model.
[TownSquare.git] / townsquare / websetup.py
blobcca558b4cd9752a0f8a5cc15bf7f60e3133a8f7f
1 """Setup the townsquare application"""
2 import logging
4 from townsquare.config.environment import load_environment
6 log = logging.getLogger(__name__)
8 def setup_app(command, conf, vars):
9 """Place any commands to setup townsquare here"""
10 load_environment(conf.global_conf, conf.local_conf)