Parent: [3abb2e] (diff)

Child: [b1261c] (diff)

Download this file

schema.py    22 lines (17 with data), 525 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: utf-8 -*-
"""Setup the allura application"""
import logging
from tg import config
import pylons
log = logging.getLogger(__name__)
def setup_schema(command, conf, vars):
"""Place any commands to setup allura here"""
import ming
import allura
pylons.c._push_object(EmptyClass())
allura.credentials._push_object(allura.lib.security.Credentials())
ming.configure(**conf)
from allura import model
# Nothing to do
log.info('setup_schema called')
class EmptyClass(object): pass