Mercurial > p > roundup > code
view frontends/wsgi.py @ 6735:e8607971d3d1
re-enable other python versions.
| author | John Rouillard <rouilj@ieee.org> |
|---|---|
| date | Mon, 27 Jun 2022 17:34:42 -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)
