mirror of
https://github.com/enpaul/kodak.git
synced 2025-09-19 05:31:58 +00:00
Add initial server infrastructure
This commit is contained in:
22
imagemonk/application.py
Normal file
22
imagemonk/application.py
Normal file
@@ -0,0 +1,22 @@
|
||||
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)
|
Reference in New Issue
Block a user