Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add static url variables to init #171

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 13 additions & 4 deletions flask_apispec/extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,24 @@ def get_pet(pet_id):
docs.register(get_pet)

:param Flask app: App associated with API documentation
:param String static_folder: Static files folder location
:param String template_folder: Template files folder location
:param String static_url_path: URL to serve static files
:param APISpec spec: apispec specification associated with API documentation
"""

def __init__(self, app=None):
def __init__(self, app=None,
static_folder='./static',
template_folder='./templates',
static_url_path='/flask-apispec/static'):
self._deferred = []
self.app = app
self.view_converter = None
self.resource_converter = None
self.spec = None
self.static_folder = static_folder
self.template_folder = template_folder
self.static_url_path = static_url_path

if app:
self.init_app(app)
Expand Down Expand Up @@ -71,9 +80,9 @@ def add_swagger_routes(self):
blueprint = flask.Blueprint(
'flask-apispec',
__name__,
static_folder='./static',
template_folder='./templates',
static_url_path='/flask-apispec/static',
static_folder=self.static_folder,
template_folder=self.template_folder,
static_url_path=self.static_url_path,
)

json_url = self.app.config.get('APISPEC_SWAGGER_URL', '/swagger/')
Expand Down