view frontends/wsgi.py @ 6695:b3ba03d2b214 2.2.0b1

2.2.0b1 release changes
author John Rouillard <rouilj@ieee.org>
date Wed, 15 Jun 2022 09:58:31 -0400
parents 7c852cad2ca8
children d32d43e4a5ba
line wrap: on
line source

# If you installed roundup to the system locations
# using pip you don't need to change this
# section. If you installed roundup in a custom
# location, uncomment these lines and change the
# path in the append() method to your custom path.
#import sys
#sys.path.append('/custom/location/where/roundup/is/installed')

# Obtain the WSGI request dispatcher
from roundup.cgi.wsgi_handler import RequestDispatcher

# Set the path to tracker home.
tracker_home = '/path/to/tracker'

# Definition signature for app: app(environ, start_response):
app =  RequestDispatcher(tracker_home)

Roundup Issue Tracker: http://roundup-tracker.org/