mirror of
https://github.com/enpaul/kodak.git
synced 2024-11-14 10:36:55 +00:00
23 lines
649 B
Python
23 lines
649 B
Python
|
import flask_restful
|
||
|
|
||
|
from imagemonk import resources
|
||
|
from imagemonk._server import ImageMonkFlask
|
||
|
from imagemonk._server import initialize_database
|
||
|
from imagemonk._server import make_the_tea
|
||
|
|
||
|
|
||
|
APPLICATION = ImageMonkFlask(__name__)
|
||
|
API = flask_restful.Api(APPLICATION, catch_all_404s=True)
|
||
|
|
||
|
|
||
|
def _set_upload_limit() -> None:
|
||
|
APPLICATION.config["MAX_CONTENT_LENGTH"] = APPLICATION.appconfig.upload.size_limit
|
||
|
|
||
|
|
||
|
APPLICATION.before_request(make_the_tea)
|
||
|
APPLICATION.before_first_request(initialize_database)
|
||
|
APPLICATION.before_first_request(_set_upload_limit)
|
||
|
|
||
|
for resource in resources.RESOURCES:
|
||
|
API.add_resource(resource, *resource.routes)
|