##// END OF EJS Templates
fixes issue #16 reimplementation of database repository, for using generic pk instead of repo naming as pk. Which caused to many problems....
fixes issue #16 reimplementation of database repository, for using generic pk instead of repo naming as pk. Which caused to many problems. Fixed issue when redirecting after repo name change to 404. Removed update hook from basic app setup

File last commit:

r365:ec7b76d4 default
r367:a26f48ad default
Show More
websetup.py
23 lines | 660 B | text/x-python | PythonLexer
"""Setup the pylons_app application"""
from os.path import dirname as dn, join as jn
from pylons_app.config.environment import load_environment
from pylons_app.lib.db_manage import DbManage
import logging
import os
import sys
log = logging.getLogger(__name__)
ROOT = dn(dn(os.path.realpath(__file__)))
sys.path.append(ROOT)
def setup_app(command, conf, vars):
"""Place any commands to setup pylons_app here"""
dbmanage = DbManage(log_sql=True)
dbmanage.create_tables(override=True)
dbmanage.config_prompt()
dbmanage.admin_prompt()
dbmanage.create_permissions()
load_environment(conf.global_conf, conf.local_conf, initial=True)