Project

General

Profile

Statistics
| Branch: | Tag: | Revision:

vigiboard / vigiboard / config / environment.py @ d3c47597

History | View | Annotate | Download (286 Bytes)

1
# -*- coding: utf-8 -*-
2
"""WSGI environment setup for vigiboard."""
3
from __future__ import absolute_import
4
from .app_cfg import base_config
5

    
6
__all__ = ['load_environment']
7

    
8
#Use base_config to setup the environment loader function
9
load_environment = base_config.make_load_environment()