Spaces:
Build error
Build error
cd: eu
Browse files- .github/workflows/cd.yml +7 -1
- .vscode/launch.json +22 -0
- thinapps-shared +1 -1
.github/workflows/cd.yml
CHANGED
|
@@ -72,4 +72,10 @@ jobs:
|
|
| 72 |
gcloud beta run deploy crawl --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/crawl.js --region us-central1 --async --min-instances 0 --deploy-health-check --use-http2
|
| 73 |
- name: Deploy SEARCH with Tag
|
| 74 |
run: |
|
| 75 |
-
gcloud beta run deploy search --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/search.js --region us-central1 --async --min-instances 0 --deploy-health-check --use-http2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 72 |
gcloud beta run deploy crawl --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/crawl.js --region us-central1 --async --min-instances 0 --deploy-health-check --use-http2
|
| 73 |
- name: Deploy SEARCH with Tag
|
| 74 |
run: |
|
| 75 |
+
gcloud beta run deploy search --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/search.js --region us-central1 --async --min-instances 0 --deploy-health-check --use-http2
|
| 76 |
+
- name: Deploy CRAWL-EU with Tag
|
| 77 |
+
run: |
|
| 78 |
+
gcloud beta run deploy crawl-eu --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/crawl.js --region europe-west1 --async --min-instances 0 --deploy-health-check --use-http2
|
| 79 |
+
- name: Deploy SEARCH-EU with Tag
|
| 80 |
+
run: |
|
| 81 |
+
gcloud beta run deploy search-eu --image us-docker.pkg.dev/reader-6b7dc/jina-reader/reader@${{steps.container.outputs.imageid}} --tag ${{ env.RELEASE_VERSION }} --command '' --args build/stand-alone/search.js --region europe-west1 --async --min-instances 0 --deploy-health-check --use-http2
|
.vscode/launch.json
CHANGED
|
@@ -60,6 +60,28 @@
|
|
| 60 |
"preLaunchTask": "Backend:build:watch",
|
| 61 |
"killBehavior": "forceful"
|
| 62 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
{
|
| 64 |
"name": "Debug Stand Alone Search",
|
| 65 |
"request": "launch",
|
|
|
|
| 60 |
"preLaunchTask": "Backend:build:watch",
|
| 61 |
"killBehavior": "forceful"
|
| 62 |
},
|
| 63 |
+
{
|
| 64 |
+
"name": "Debug Stand Alone Crawl - EU",
|
| 65 |
+
"request": "launch",
|
| 66 |
+
"runtimeArgs": [
|
| 67 |
+
"--env-file=.secret.local",
|
| 68 |
+
],
|
| 69 |
+
"env": {
|
| 70 |
+
"GCLOUD_PROJECT": "reader-6b7dc",
|
| 71 |
+
"FIRESTORE_DATABASE": "reader-eu",
|
| 72 |
+
"GCP_STORAGE_BUCKET": "reader-eu",
|
| 73 |
+
"LD_PRELOAD": "/usr/local/lib/libcurl-impersonate-chrome.dylib"
|
| 74 |
+
},
|
| 75 |
+
"cwd": "${workspaceFolder}",
|
| 76 |
+
"program": "build/stand-alone/crawl.js",
|
| 77 |
+
"skipFiles": [
|
| 78 |
+
"<node_internals>/**"
|
| 79 |
+
],
|
| 80 |
+
"type": "node",
|
| 81 |
+
"outputCapture": "std",
|
| 82 |
+
"preLaunchTask": "Backend:build:watch",
|
| 83 |
+
"killBehavior": "forceful"
|
| 84 |
+
},
|
| 85 |
{
|
| 86 |
"name": "Debug Stand Alone Search",
|
| 87 |
"request": "launch",
|
thinapps-shared
CHANGED
|
@@ -1 +1 @@
|
|
| 1 |
-
Subproject commit
|
|
|
|
| 1 |
+
Subproject commit 4b1061e6e9623bb98b82ac6f86004988c7211385
|