File tree 3 files changed +5
-4
lines changed
src/simcore_service_webserver/director
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ export HOST_GID=1000
28
28
# TODO: Add a meaningfull call to retrieve the local docker group ID and the user ID in linux.
29
29
endif
30
30
31
- PY_FILES = $(strip $(shell find services packages -iname '* .py' -not -path "* egg* " -not -path "* contrib* " -not -path "* -sdk/python* " -not -path "* generated_code* " -not -path "* datcore.py") )
31
+ PY_FILES = $(strip $(shell find services packages -iname '* .py' -not -path "* egg* " -not -path "* contrib* " -not -path "* -sdk/python* " -not -path "* generated_code* " -not -path "* datcore.py" -not -path "web/server" ) )
32
32
33
33
export PYTHONPATH=${CURDIR}/packages/s3wrapper/src :${CURDIR}/packages/simcore-sdk/src
34
34
Original file line number Diff line number Diff line change 13
13
14
14
logger = logging .getLogger (__name__ )
15
15
16
+
17
+
16
18
def setup (app : web .Application ):
17
19
logger .debug ("Setting up %s ..." , __name__ )
18
20
Original file line number Diff line number Diff line change 16
16
from aiohttp import web
17
17
from aiohttp .client_reqrep import ClientResponse
18
18
from aiohttp .test_utils import TestClient
19
- from yarl import URL
20
-
21
- from simcore_service_webserver .application_keys import APP_CONFIG_KEY
19
+ from servicelib .application_keys import APP_CONFIG_KEY
22
20
from simcore_service_webserver .reverse_proxy import setup_reverse_proxy
23
21
from simcore_service_webserver .reverse_proxy .abc import ServiceResolutionPolicy
24
22
from simcore_service_webserver .reverse_proxy .settings import PROXY_MOUNTPOINT
23
+ from yarl import URL
25
24
26
25
27
26
def create_backend_app (name , image , basepath ):
You can’t perform that action at this time.
0 commit comments