ports/www/py-puppetboard/files/wsgi.py.sample.in
Romain Tartière 7dbf50806b
www/py-puppetboard: Update to 4.0.3
* Update and fix dependencies;
* Ship a wsgi.py sample to run the application;
* Remove outdated CONFLICTS;

With hat:	puppet
2022-07-31 07:47:28 -10:00

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