I know there are plenty of questions about flask and cherrypy and static files but I still can't seem to get this working.

There's a snippet to deploy a flask app on cherrypy here: http://flask.pocoo.org/snippets/24/

Is there a quick modification to have the wsgiserver serve the content in the static directory of the flask app?

The static content features of cherrypy seem to reside within cherrypy. And I am unsure on how to mount a cherrypy app that does nothing but serve static content while working with this snippet.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted
+100

Here is a snippet that should do what you are asking for. This is based on the set of instructions provided here (it's definitely worth a read, though I'm not sure how up to date it is).

import cherrypy
from hello import app

cherrypy.tree.graft(app, '/')
cherrypy.tree.mount(None, '/static', {'/' : {
    'tools.staticdir.dir': app.static_folder,
    'tools.staticdir.on': True,
    }})
cherrypy.config.update({
    'server.socket_port': 8080,
    })
cherrypy.engine.start()
cherrypy.engine.block()
link|improve this answer
1  
I'll try it out tonight and if it works I'll set as answer. I've been googling for so long. Thanks! – MKaras Feb 22 at 11:22
It works - thanks a lot. – MKaras Feb 23 at 0:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.