fix flake8 and add MIME types to lambda setup (#781)

* fix flake8 and add MIME types to lambda setup

* add fixes per #660)
This commit is contained in:
Tom Kralidis
2021-09-19 19:22:02 -04:00
committed by GitHub
parent db3d4f9502
commit 2cb68277f9
3 changed files with 15 additions and 5 deletions
+10 -1
View File
@@ -1 +1,10 @@
{"app":"pygeoapi/flask_app.APP","text_mime_types":["application/ld+json"]}
{
"app": "pygeoapi/flask_app.APP",
"text_mime_types": [
"application/ld+json",
"text/html",
"application/geo+json",
"application/prs.coverage+json",
"application/xml"
]
}
+2 -1
View File
@@ -1,9 +1,10 @@
import os
from pygeoapi.flask_app import APP
os.environ['PYGEOAPI_CONFIG'] = 'pygeoapi-test-config.yml'
os.environ['PYGEOAPI_OPENAPI'] = 'pygeoapi-test-openapi.yml'
from pygeoapi.flask_app import APP
if __name__ == "__main__":
APP.run()