Skip to content

Commit 26f81dd

Browse files
authored
Merge pull request #3063 from RedisInsight/build/deep-linking/main
Build/deep linking/main
2 parents b514cd5 + f39196c commit 26f81dd

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

.circleci/config.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,11 @@ jobs:
410410
- checkout
411411
- attach_workspace:
412412
at: .
413-
- run: choco install nodejs --version=18.15.0
413+
- run:
414+
command: |
415+
nvm install 18.15.0
416+
nvm use 18.15.0
417+
npm install --global yarn
414418
- run:
415419
command: |
416420
cd tests/e2e && export TEST_FILES=$(circleci tests glob "tests/electron/**/*.e2e.ts" | circleci tests split --split-by=timings) && cd ../..
@@ -755,7 +759,10 @@ jobs:
755759
- run:
756760
name: Build windows exe
757761
command: |
758-
choco install nodejs --version=18.15.0
762+
nvm install 18.15.0
763+
nvm use 18.15.0
764+
npm install --global yarn
765+
759766
# set ALL_REDIS_COMMANDS=$(curl $ALL_REDIS_COMMANDS_RAW_URL)
760767
yarn install
761768
yarn --cwd redisinsight/api/ install

redisinsight/desktop/src/lib/server/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ let beApp: any
2424
export const launchApiServer = async () => {
2525
try {
2626
const detectPortConst = await getPort({ port: portNumbers(port, port + 1_000) })
27-
process.env.API_PORT = detectPortConst?.toString()
27+
process.env.RI_APP_PORT = detectPortConst?.toString()
2828

2929
if (process.env.APPIMAGE) {
3030
process.env.BUILD_PACKAGE = 'appimage'

0 commit comments

Comments
 (0)