mirror of
https://github.com/frappe/gunicorn.git
synced 2026-01-14 11:09:11 +08:00
11 lines
296 B
Python
11 lines
296 B
Python
"""Setup the pylonstest application"""
|
|
import logging
|
|
|
|
from pylonstest.config.environment import load_environment
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
def setup_app(command, conf, vars):
|
|
"""Place any commands to setup pylonstest here"""
|
|
load_environment(conf.global_conf, conf.local_conf)
|