websetup.py
50 lines
| 1.8 KiB
| text/x-python
|
PythonLexer
/ rhodecode / websetup.py
r841 | # -*- coding: utf-8 -*- | |||
""" | ||||
rhodecode.websetup | ||||
~~~~~~~~~~~~~~~~~~ | ||||
Weboperations and setup for rhodecode | ||||
r1203 | ||||
r841 | :created_on: Dec 11, 2010 | |||
:author: marcink | ||||
r1824 | :copyright: (C) 2010-2012 Marcin Kuzminski <marcin@python-works.com> | |||
r841 | :license: GPLv3, see COPYING for more details. | |||
""" | ||||
r1206 | # This program is free software: you can redistribute it and/or modify | |||
# it under the terms of the GNU General Public License as published by | ||||
# the Free Software Foundation, either version 3 of the License, or | ||||
# (at your option) any later version. | ||||
r1203 | # | |||
r841 | # This program is distributed in the hope that it will be useful, | |||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||||
# GNU General Public License for more details. | ||||
r1203 | # | |||
r841 | # You should have received a copy of the GNU General Public License | |||
r1206 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
r841 | ||||
import logging | ||||
r547 | from rhodecode.config.environment import load_environment | |||
from rhodecode.lib.db_manage import DbManage | ||||
r1734 | from rhodecode.model.meta import Session | |||
r841 | ||||
r547 | ||||
log = logging.getLogger(__name__) | ||||
r1205 | ||||
r547 | def setup_app(command, conf, vars): | |||
"""Place any commands to setup rhodecode here""" | ||||
r781 | dbconf = conf['sqlalchemy.db1.url'] | |||
r1205 | dbmanage = DbManage(log_sql=True, dbconf=dbconf, root=conf['here'], | |||
tests=False) | ||||
r2651 | dbmanage.create_tables(override=True, defaults=command.options.__dict__) | |||
r834 | dbmanage.set_db_version() | |||
r2284 | opts = dbmanage.config_prompt(None, defaults=command.options.__dict__) | |||
dbmanage.create_settings(opts) | ||||
r547 | dbmanage.create_default_user() | |||
r2284 | dbmanage.admin_prompt(defaults=command.options.__dict__) | |||
r547 | dbmanage.create_permissions() | |||
dbmanage.populate_default_permissions() | ||||
r1749 | Session.commit() | |||
r555 | load_environment(conf.global_conf, conf.local_conf, initial=True) | |||