Skip to content

Instantly share code, notes, and snippets.

@jimbaker
Created March 6, 2014 20:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimbaker/9399013 to your computer and use it in GitHub Desktop.
Save jimbaker/9399013 to your computer and use it in GitHub Desktop.
Fireside setup
META-INF/
META-INF/MANIFEST.MF
WEB-INF/
WEB-INF/lib/
WEB-INF/lib/fireside-0.1-single.jar
WEB-INF/web.xml
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
version="3.0">
<servlet>
<servlet-name>fireside</servlet-name>
<servlet-class>org.python.tools.fireside.servlet.WSGIServlet</servlet-class>
<init-param>
<param-name>wsgi.handler</param-name>
<param-value>hellowsgi.simple_app</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>fireside</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment