Following the instructions here I'm trying to create an endpoint in a Tornado app that shows the API documentation. I'm setting up a static file handler similar to this:
This works fine if theme_name = "apistar" but there are several 404s with swaggerui and redoc themes due to missing JS/CSS files that are not included in apistar/themes. If these files aren't going to be included in the package, then there should be a way to specify a vendor URL prefix.
Following the instructions here I'm trying to create an endpoint in a Tornado app that shows the API documentation. I'm setting up a static file handler similar to this:
This works fine if
theme_name = "apistar"
but there are several 404s withswaggerui
andredoc
themes due to missing JS/CSS files that are not included inapistar/themes
. If these files aren't going to be included in the package, then there should be a way to specify a vendor URL prefix.