quivr
quivr copied to clipboard
Cant add Brain.
Hi All,
I have setup as per procedure have some issues but I found the answer here. The thing I changed was the following.
_If you don't care about gpt4all, edit Quivr/backend/Dockerfile and replace this:
ENTRYPOINT ["/code/scripts/start.sh"]
with this:
ENTRYPOINT exec uvicorn main:app --reload --host 0.0.0.0 --port 5050_
I get into the app but when Im trying to create the brain, it just idles and nothing happens.
Please point me in the right direction. windows 11 22H2 Server: Docker Desktop 4.21.1 (114176) Engine: Version: 24.0.2
I found that editing start.sh and removing removing the #!/bin/bash and the part of the script that looks for gpt4all solved the problem for me. This is my script after the changes:
# Move to the code directory
cd /code
# Start your app
uvicorn main:app --reload --host 0.0.0.0 --port 5050
You will also have to change the backend Dockerfile to change the ENTRYPOINT. Here is my Dockerfile:
FROM python:3.11-bullseye
# Install GEOS library
RUN apt-get update && apt-get install -y libgeos-dev bash
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir -r /code/requirements.txt --timeout 100
#You may need to run `chmod +x ./backend/scripts/start.sh` on your host machine if you get a permission error
COPY --chmod=0755 ./scripts/start.sh /code/scripts/start.sh
COPY . /code/
CMD ls -l /code/
ENTRYPOINT exec ./scripts/start.sh
I am also unable to Create a Brain. Tried the above solutions - editing the shart.sh file and editing the ENTRYPOINT file.
im same issue for create a brain:
Access to XMLHttpRequest at 'http://192.168.0.22:5050/brains/' from origin 'http://192.168.0.22:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
117-587c1ea058c272d0.js:6 POST http://192.168.0.22:5050/brains/ net::ERR_FAILED 500 (Internal Server Error)
(anonymous) @ 117-587c1ea058c272d0.js:6
xhr @ 117-587c1ea058c272d0.js:6
tX @ 117-587c1ea058c272d0.js:6
Promise.then (async)
request @ 117-587c1ea058c272d0.js:6
(anonymous) @ 117-587c1ea058c272d0.js:6
(anonymous) @ 117-587c1ea058c272d0.js:6
i @ 919-6a900d47ef14da70.js:1
createBrain @ 919-6a900d47ef14da70.js:1
k @ 919-6a900d47ef14da70.js:1
i @ layout-1d26def1defcd14a.js:1
onSubmit @ layout-1d26def1defcd14a.js:1
ae @ 2443530c-da70b571b1f7722c.js:9
ao @ 2443530c-da70b571b1f7722c.js:9
(anonymous) @ 2443530c-da70b571b1f7722c.js:9
u8 @ 2443530c-da70b571b1f7722c.js:9
u6 @ 2443530c-da70b571b1f7722c.js:9
(anonymous) @ 2443530c-da70b571b1f7722c.js:9
oC @ 2443530c-da70b571b1f7722c.js:9
io @ 2443530c-da70b571b1f7722c.js:9
sn @ 2443530c-da70b571b1f7722c.js:9
i9 @ 2443530c-da70b571b1f7722c.js:9
i5 @ 2443530c-da70b571b1f7722c.js:9
117-587c1ea058c272d0.js:6 Uncaught (in promise) to {message: 'Network Error', name: 'AxiosError', code: 'ERR_NETWORK', config: {…}, request: XMLHttpRequest, …}
and in log:
backend | INFO: 192.168.0.238:58247 - "GET /brains/ HTTP/1.1" 500 Internal Server Error
backend | ERROR: Exception in ASGI application
backend | Traceback (most recent call last):
backend | File "/usr/local/lib/python3.11/site-packages/uvicorn/protocols/http/h11_impl.py", line 428, in run_asgi
backend | result = await app( # type: ignore[func-returns-value]
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/uvicorn/middleware/proxy_headers.py", line 78, in __call__
backend | return await self.app(scope, receive, send)
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/applications.py", line 276, in __call__
backend | await super().__call__(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/applications.py", line 122, in __call__
backend | await self.middleware_stack(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 184, in __call__
backend | raise exc
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 162, in __call__
backend | await self.app(scope, receive, _send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/cors.py", line 91, in __call__
backend | await self.simple_response(scope, receive, send, request_headers=headers)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/cors.py", line 146, in simple_response
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 79, in __call__
backend | raise exc
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 68, in __call__
backend | await self.app(scope, receive, sender)
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 21, in __call__
backend | raise e
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 718, in __call__
backend | await route.handle(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 276, in handle
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 66, in app
backend | response = await func(request)
backend | ^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 237, in app
backend | raw_response = await run_endpoint_function(
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 163, in run_endpoint_function
backend | return await dependant.call(**values)
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/code/routes/brain_routes.py", line 40, in brain_endpoint
backend | brains = brain.get_user_brains(current_user.id)
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/code/models/brains.py", line 55, in get_user_brains
backend | .execute()
backend | ^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/postgrest/_sync/request_builder.py", line 68, in execute
backend | raise APIError(r.json())
backend | postgrest.exceptions.APIError: {'code': 'PGRST200', 'details': "Searched for a foreign key relationship between 'brains_users' and 'brains' in the schema 'public', but no matches were found.", 'hint': None, 'message': "Could not find a relationship between 'brains_users' and 'brains' in the schema cache"}
backend | INFO: 192.168.0.238:58256 - "OPTIONS /brains/ HTTP/1.1" 200 OK
backend | INFO: 192.168.0.238:58256 - "POST /brains/ HTTP/1.1" 500 Internal Server Error
backend | ERROR: Exception in ASGI application
backend | Traceback (most recent call last):
backend | File "/usr/local/lib/python3.11/site-packages/uvicorn/protocols/http/h11_impl.py", line 428, in run_asgi
backend | result = await app( # type: ignore[func-returns-value]
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/uvicorn/middleware/proxy_headers.py", line 78, in __call__
backend | return await self.app(scope, receive, send)
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/applications.py", line 276, in __call__
backend | await super().__call__(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/applications.py", line 122, in __call__
backend | await self.middleware_stack(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 184, in __call__
backend | raise exc
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/errors.py", line 162, in __call__
backend | await self.app(scope, receive, _send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/cors.py", line 91, in __call__
backend | await self.simple_response(scope, receive, send, request_headers=headers)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/cors.py", line 146, in simple_response
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 79, in __call__
backend | raise exc
backend | File "/usr/local/lib/python3.11/site-packages/starlette/middleware/exceptions.py", line 68, in __call__
backend | await self.app(scope, receive, sender)
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 21, in __call__
backend | raise e
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/middleware/asyncexitstack.py", line 18, in __call__
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 718, in __call__
backend | await route.handle(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 276, in handle
backend | await self.app(scope, receive, send)
backend | File "/usr/local/lib/python3.11/site-packages/starlette/routing.py", line 66, in app
backend | response = await func(request)
backend | ^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 237, in app
backend | raw_response = await run_endpoint_function(
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/usr/local/lib/python3.11/site-packages/fastapi/routing.py", line 163, in run_endpoint_function
backend | return await dependant.call(**values)
backend | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend | File "/code/routes/brain_routes.py", line 147, in create_brain_endpoint
backend | brain.create_brain()
backend | File "/code/models/brains.py", line 113, in create_brain
backend | commons["supabase"].table("brains").insert({"name": self.name}).execute()
backend | File "/usr/local/lib/python3.11/site-packages/postgrest/_sync/request_builder.py", line 68, in execute
backend | raise APIError(r.json())
backend | postgrest.exceptions.APIError: {}
I have the very same issue too.
I have same issue too.
I have same issue too.
I am having the same issue as well. Any eta on a fix ?
yeah having the same issue. please anyone got any solution for this?
Same issue here. I can't get the app to fully run. This error is thrown.
https://github.com/StanGirard/quivr/issues/547#issuecomment-1630445188
is working locally now
same problem
I can confirm this is resolved by manually running the DB scripts in the SQL editor on supabase.
I can confirm this is resolved by manually running the DB scripts in the SQL editor on supabase.
Hi, which scripts should I run, table.sql ?
@BrokenArrow1404 both scripts
Hi, I solved this problem just by trying to deploy Quivr locally instead of on a VPS, I think there might be some config files I forget to edit
@BrokenArrow1404
Hi, I solved this problem just by trying to deploy Quivr locally instead of on a VPS, I think there might be some config files I forget to edit
If you are deploying on a remote server make sure to update the NEXT_PUBLIC_BACKEND_URL value in the frontend .env file with your remote server's IP or URL
Hi All,
I have setup as per procedure have some issues but I found the answer here. The thing I changed was the following.
_If you don't care about gpt4all, edit Quivr/backend/Dockerfile and replace this:
ENTRYPOINT ["/code/scripts/start.sh"]
with this:
ENTRYPOINT exec uvicorn main:app --reload --host 0.0.0.0 --port 5050_
I get into the app but when Im trying to create the brain, it just idles and nothing happens.
Please point me in the right direction. windows 11 22H2 Server: Docker Desktop 4.21.1 (114176) Engine: Version: 24.0.2
Hi guys, after going through all the fixes. the simplest solution is the one below. https://github.com/StanGirard/quivr/issues/556#issuecomment-1627431079
Just change to LF on windows. Thats the only change I have applied from a new install.
And now my brain is working 👌
Quivr$ ./migration.sh Last migration executed: 202307111517030_add_subscription_invitations_table Running migration 202307111517031_change_vectors_id_type.sql BEGIN CREATE TABLE psql:scripts/202307111517031_change_vectors_id_type.sql:12: ERROR: column "old_id" is of type bigint but expression is of type uuid LINE 2: SELECT id, uuid_generate_v4() FROM vectors; ^ HINT: You will need to rewrite or cast the expression. psql:scripts/202307111517031_change_vectors_id_type.sql:20: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:26: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:29: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:30: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:33: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:34: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:40: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:45: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:48: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:49: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:51: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:52: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:55: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:56: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:59: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:88: ERROR: current transaction is aborted, commands ignored until end of transaction block psql:scripts/202307111517031_change_vectors_id_type.sql:95: ERROR: current transaction is aborted, commands ignored until end of transaction block ROLLBACK ERROR: column "id" of relation "migrations" does not exist LINE 1: INSERT INTO migrations (id) VALUES ('202307111517031_change_... ^ Migration script completed.
I think not use .sh scripts for a while because is not stable for me.
I use remote server Debian 11, also can't add brain
same question
Installed 20230722 and cant make brain. Current error as copied from red message box is: current error: {"message":"Network Error","name":"AxiosError","stack":"to@http://localhost:3000/_next/static/chunks/4214-2500ef983cb517fe.js:6:26355\n24214/tV</</u.onerror@http://localhost:3000/_next/static/chunks/4214-2500ef983cb517fe.js:6:40676\n","config":{"transitional":{"silentJSONParsing":true,"forcedJSONParsing":true,"clarifyTimeoutError":false},"adapter":["xhr","http"],"transformRequest":[null],"transformResponse":[null],"timeout":0,"xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN","maxContentLength":-1,"maxBodyLength":-1,"env":{},"headers":{"Accept":"application/json, text/plain, /","Content-Type":"application/json","Authorization":"Bearer eyJhbGciOiJIUzI1NiIsImtpZCI6InJDZXk4ZEZNWlBZK3BNODEiLCJ0eXAiOiJKV1QifQ.eyJhdWQiOiJhdXRoZW50aWNhdGVkIiwiZXhwIjoxNjkwMDkxOTc4LCJpYXQiOjE2OTAwODgzNzgsImlzcyI6Imh0dHBzOi8vaHR0cHM6Ly91bWhuZHVjcmhlZWhocnhzd25oYi5zdXBhYmFzZS5jby9hdXRoL3YxIiwic3ViIjoiMGFkMWYzMjYtYWYzNS00NzQ2LWJkZWUtODE2NGNkODE1NmZkIiwiZW1haWwiOiJncmVnQGx1Y3Jvc29sLmNvbSIsInBob25lIjoiIiwiYXBwX21ldGFkYXRhIjp7InByb3ZpZGVyIjoiZW1haWwiLCJwcm92aWRlcnMiOlsiZW1haWwiXX0sInVzZXJfbWV0YWRhdGEiOnt9LCJyb2xlIjoiYXV0aGVudGljYXRlZCIsImFhbCI6ImFhbDEiLCJhbXIiOlt7Im1ldGhvZCI6InBhc3N3b3JkIiwidGltZXN0YW1wIjoxNjkwMDg4Mzc4fV0sInNlc3Npb25faWQiOiI2ZDhiZjgwNy0xYTAxLTQ3ZWItYmU5ZS1mNzNiYjYyNmMzNTAifQ.ImSwvt2P0rSCXhVF8XylxgmxSBcGRrRh-fJhnNMZhgo"},"baseURL":"http://localhost:5050","method":"post","url":"/brains/","data":"{"name":"Intel Specs"}"},"code":"ERR_NETWORK","status":null}
Note: ok with exposed key for now, just trying to get quivr operational.
Having a similar error in a red warning box on creating a Brain and no Brain created.
Did have a lot of unexpected end of file errors when installing as shown below.
Other wise front end loads and seem to work as expected for what I can access.
PS C:\Users\QT-ENG1\Quivr> docker compose -f docker-compose.yml up --build 2023/07/28 12:23:53 http2: server: error reading preface from client //./pipe/docker_engine: file has already been closed [+] Building 287.3s (28/28) FINISHED => [frontend internal] load build definition from Dockerfile 0.2s => => transferring dockerfile: 854B 0.0s => [frontend internal] load .dockerignore 0.2s => => transferring context: 61B 0.0s => [backend-core internal] load .dockerignore 0.1s => => transferring context: 2B 0.0s => [backend-core internal] load build definition from Dockerfile 0.2s => => transferring dockerfile: 562B 0.0s => [frontend internal] load metadata for docker.io/library/node:18-alpine 3.4s => [backend-core internal] load metadata for docker.io/library/python:3.11-bullseye 3.5s => [frontend 1/10] FROM docker.io/library/node:18-alpine@sha256:93d91deea65c9a0475507e8bc8b1917d6278522322f00c00b3ab09cab6830060 3.6s => => resolve docker.io/library/node:18-alpine@sha256:93d91deea65c9a0475507e8bc8b1917d6278522322f00c00b3ab09cab6830060 0.0s => => sha256:9112cb38e57e8bfbc18330dfe346483e20db1fc77c84e4238f63dd6fef798f66 6.73kB / 6.73kB 0.0s => => sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 3.40MB / 3.40MB 0.5s => => sha256:2629b68d431155efb7618354d25920459fa7e2e0e74cee98f77d9dd4f40dbdc2 47.76MB / 47.76MB 1.2s => => sha256:93d91deea65c9a0475507e8bc8b1917d6278522322f00c00b3ab09cab6830060 1.43kB / 1.43kB 0.0s => => sha256:ef5e088232f803cadb83326edb4731015f42961d23a11510b109c2c98cfbb945 1.16kB / 1.16kB 0.0s => => sha256:ddb7cc70f260e201d3baddd8db072ecf6847e889e8750bea0c0e2c3aab41d020 2.34MB / 2.34MB 1.0s => => extracting sha256:31e352740f534f9ad170f75378a84fe453d6156e40700b882d737a8f4a6988a3 0.1s => => sha256:18afe63734743ad86235f2917c4a8e874db1fcdae23de45b4bdbf1264ed0540d 449B / 449B 0.9s => => extracting sha256:2629b68d431155efb7618354d25920459fa7e2e0e74cee98f77d9dd4f40dbdc2 1.9s => => extracting sha256:ddb7cc70f260e201d3baddd8db072ecf6847e889e8750bea0c0e2c3aab41d020 0.0s => => extracting sha256:18afe63734743ad86235f2917c4a8e874db1fcdae23de45b4bdbf1264ed0540d 0.0s => [frontend internal] load build context 0.2s => => transferring context: 1.04MB 0.1s => [backend-core 1/8] FROM docker.io/library/python:3.11-bullseye@sha256:0723d0a5f1860a887c15f64d9768282b62f186af532f0c95babd756fd3049b21 13.0s => => resolve docker.io/library/python:3.11-bullseye@sha256:0723d0a5f1860a887c15f64d9768282b62f186af532f0c95babd756fd3049b21 0.1s => => sha256:0723d0a5f1860a887c15f64d9768282b62f186af532f0c95babd756fd3049b21 1.65kB / 1.65kB 0.0s => => sha256:99f0d5727bf4b8eda672fb3ef50bff6c298642a38724aea047269ffa706e3620 7.52kB / 7.52kB 0.0s => => sha256:1ada8260e0f4ced3302d84e80cd4a23c49d6c525bc4cddd56285401d31266dc6 2.01kB / 2.01kB 0.0s => => sha256:6fdd0e5b72ccae203ec30d533c0bcd34200af90265e0531c66356812e529af32 15.76MB / 15.76MB 1.5s => => sha256:34df401c391c7595044379e04e8ad4856a5a3974cdbf5a160f0a204d761e88aa 55.06MB / 55.06MB 2.0s => => sha256:fa786a946ae67fa18e07eaf82fefee1777449f7db1a8fea5abec1aadbe99e2ef 54.59MB / 54.59MB 2.9s => => sha256:f3f8721393bc605f2b915d80eb2ad6d5219db374f36bbd1fee99b99174a0a4ca 196.85MB / 196.85MB 5.3s => => extracting sha256:34df401c391c7595044379e04e8ad4856a5a3974cdbf5a160f0a204d761e88aa 1.9s => => sha256:e14ce45ee3785d66fea249b188d57222b8d7a4588a1eafe456200d3245179650 6.29MB / 6.29MB 2.6s => => sha256:eb55339475838a1f7c33bb4894643bbff486b9e411476ee6a95e704e55d41506 20.02MB / 20.02MB 4.5s => => sha256:713e7343a7a0d7502a6e6956fe284d4e26b4f3e276b6e282e86fda5c6f60bd31 244B / 244B 3.4s => => sha256:7d3cd2e5518faf0f5526c81f88eb74001f1e735084f2788e580eee5941984340 3.09MB / 3.09MB 4.5s => => extracting sha256:6fdd0e5b72ccae203ec30d533c0bcd34200af90265e0531c66356812e529af32 0.3s => => extracting sha256:fa786a946ae67fa18e07eaf82fefee1777449f7db1a8fea5abec1aadbe99e2ef 2.0s => => extracting sha256:f3f8721393bc605f2b915d80eb2ad6d5219db374f36bbd1fee99b99174a0a4ca 5.0s => => extracting sha256:e14ce45ee3785d66fea249b188d57222b8d7a4588a1eafe456200d3245179650 0.2s => => extracting sha256:eb55339475838a1f7c33bb4894643bbff486b9e411476ee6a95e704e55d41506 0.5s => => extracting sha256:713e7343a7a0d7502a6e6956fe284d4e26b4f3e276b6e282e86fda5c6f60bd31 0.0s => => extracting sha256:7d3cd2e5518faf0f5526c81f88eb74001f1e735084f2788e580eee5941984340 0.2s => [backend-core internal] load build context 0.1s => => transferring context: 191.94kB 0.0s => [frontend 2/10] RUN apk add --update --no-cache python3 make g++ && ln -sf python3 /usr/bin/python 7.6s => [frontend 3/10] RUN python3 -m ensurepip 3.4s => [backend-core 2/8] RUN apt-get update && apt-get install -y libgeos-dev pandoc 15.3s => [frontend 4/10] RUN pip3 install --no-cache --upgrade pip setuptools 3.1s => [frontend 5/10] RUN mkdir -p /app 0.5s => [frontend 6/10] WORKDIR /app 0.1s => [frontend 7/10] COPY package*.json yarn.lock ./ 0.1s => [frontend 8/10] RUN yarn install --network-timeout 1000000 67.9s => [backend-core 3/8] WORKDIR /code 0.1s => [backend-core 4/8] COPY ./requirements.txt /code/requirements.txt 0.1s => [backend-core 5/8] RUN pip install --no-cache-dir -r /code/requirements.txt --timeout 100 237.9s => [frontend 9/10] COPY . . 0.1s => [frontend 10/10] RUN yarn build 51.7s => [frontend] exporting to image 18.9s => => exporting layers 18.9s => => writing image sha256:6ff89b689e6deeed577bc0dba96bd920068df649a64cc58893173b144ad76630 0.0s => => naming to docker.io/library/quivr-frontend 0.0s => [backend-core 6/8] COPY ./scripts/start.sh /code/scripts/start.sh 0.1s => [backend-core 7/8] RUN chmod +x /code/scripts/start.sh 0.5s => [backend-core 8/8] COPY . /code 0.1s => [backend-core] exporting to image 16.4s => => exporting layers 16.3s => => writing image sha256:d6e699e993d232739d038b6dc2cc4902c6742f3aa1e7eba15f4897ea7b86d33c 0.0s => => naming to docker.io/library/quivr-backend-core 0.0s [+] Running 3/3 ✔ Network quivr_default Created 0.0s ✔ Container backend-core Created 0.1s ✔ Container web Created 0.1s Attaching to backend-core, web web | yarn run v1.22.19 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file web | $ next start web | - ready started server on 0.0.0.0:3000, url: http://localhost:3000 web | - info Loaded env from /app/.env backend-core exited with code 0 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 web | ReferenceError: sessionStorage is not defined web | at redirectToLogin (/app/.next/server/app/upload/page.js:1104:5) web | at UploadPage (/app/.next/server/app/upload/page.js:917:51) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:121:272) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:127:11) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:91) web | at Ke (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:131:155) web | at Me (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:130:289) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:350) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:126:189) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:91) web | Warning: For production Image Optimization with Next.js, the optional 'sharp' package is strongly recommended. Run 'yarn add sharp', and Next.js will use it automatically for Image Optimization. web | Read more: https://nextjs.org/docs/messages/sharp-missing-in-production backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file web | ReferenceError: sessionStorage is not defined web | at redirectToLogin (/app/.next/server/app/upload/page.js:1104:5) web | at UploadPage (/app/.next/server/app/upload/page.js:917:51) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:121:272) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:127:11) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:91) web | at Ke (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:131:155) web | at Me (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:130:289) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:350) web | at Je (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:126:189) web | at Z (/app/node_modules/next/dist/compiled/react-dom/cjs/react-dom-server.edge.production.min.js:128:91) backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core exited with code 2 backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file backend-core | /code/scripts/start.sh: line 2: $'\r': command not found backend-core | /code/scripts/start.sh: line 22: syntax error: unexpected end of file
Same problem here. I get this error when I run docker sompose:
backend-core | Traceback (most recent call last):
backend-core | File "/usr/local/lib/python3.11/multiprocessing/process.py", line 314, in _bootstrap
backend-core | self.run()
backend-core | File "/usr/local/lib/python3.11/multiprocessing/process.py", line 108, in run
backend-core | self._target(*self._args, **self._kwargs)
backend-core | File "/usr/local/lib/python3.11/site-packages/uvicorn/_subprocess.py", line 76, in subprocess_started
backend-core | target(sockets=sockets)
backend-core | File "/usr/local/lib/python3.11/site-packages/uvicorn/server.py", line 61, in run
backend-core | return asyncio.run(self.serve(sockets=sockets))
backend-core | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/asyncio/runners.py", line 190, in run
backend-core | return runner.run(main)
backend-core | ^^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/asyncio/runners.py", line 118, in run
backend-core | return self._loop.run_until_complete(task)
backend-core | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/asyncio/base_events.py", line 653, in run_until_complete
backend-core | return future.result()
backend-core | ^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/site-packages/uvicorn/server.py", line 68, in serve
backend-core | config.load()
backend-core | File "/usr/local/lib/python3.11/site-packages/uvicorn/config.py", line 473, in load
backend-core | self.loaded_app = import_from_string(self.app)
backend-core | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/site-packages/uvicorn/importer.py", line 21, in import_from_string
backend-core | module = importlib.import_module(module_str)
backend-core | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend-core | File "/usr/local/lib/python3.11/importlib/init.py", line 126, in import_module
backend-core | return _bootstrap._gcd_import(name[level:], package, level)
backend-core | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
backend-core | File "
Same problem :-(
Any fix?
Access to XMLHttpRequest at 'http://localhost:5050/brains/' from origin 'http://localhost:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
Same error.
Same CORS issue for me: No 'Access-Control-Allow-Origin' header is present on the requested resource. But it appears and disappears. Apparently only happens when trying to upload multiple files.
I am getting following in the web version:
Access to XMLHttpRequest at 'https://api.quivr.app/brains/f48a41d4-58ad-42df-9d13-2e1b1486e6f2/' from origin 'https://www.quivr.app' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.
GET https://api.quivr.app/brains/f48a41d4-58ad-42df-9d13-2e1b1486e6f2/ net::ERR_FAILED 500 (Internal Server Error)
(anonymous)
{"message":"Network Error","name":"AxiosError","stack":"AxiosError: Network Error\n at u.onerror (https://www.quivr.app/_next/static/chunks/9222-d42da8680426284f.js:6:40539)","config":{"transitional":{"silentJSONParsing":true,"forcedJSONParsing":true,"clarifyTimeoutError":false},"adapter":["xhr","http"],"transformRequest":[null],"transformResponse":[null],"timeout":0,"xsrfCookieName":"XSRF-TOKEN","xsrfHeaderName":"X-XSRF-TOKEN","maxContentLength":-1,"maxBodyLength":-1,"env":{},"headers":{"Accept":"application/json, text/plain, */*","Content-Type":"application/json","Authorization":"Bearer sdf"},"baseURL":"https://api.quivr.app","method":"put","url":"/brains/f48a41d4-58ad-42df-9d13-2e1b1486e6f2/","data":"{\"model\":\"gpt-3.5-turbo\",\"temperature\":0,\"keepLocal\":true,\"openAiKey\":\"\",\"status\":\"private\",\"name\":\"asd\",\"description\":\"\",\"setDefault\":false,\"max_tokens\":500,\"openai_api_key\":\"\"}"},"code":"ERR_NETWORK","status":null}
Thanks for your contributions, we'll be closing this issue as it has gone stale. Feel free to reopen if you'd like to continue the discussion.
