mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
* Update and fix dependencies; * Ship a wsgi.py sample to run the application; * Remove outdated CONFLICTS; With hat: puppet
11 lines
347 B
Text
11 lines
347 B
Text
from __future__ import absolute_import
|
|
import os
|
|
|
|
# Uncomment to enable logging
|
|
# import logging
|
|
# logging.basicConfig(filename='/var/log/puppetboard/puppetboard.log', level=logging.INFO)
|
|
|
|
# Indicate where to find the configuration file
|
|
os.environ['PUPPETBOARD_SETTINGS'] = '%%ETCDIR%%/settings.py'
|
|
|
|
from puppetboard.app import app as application
|