Skip to content

Commit 489061f

Browse files
Merge pull request #506 from zenml-io/dev
Dev
2 parents f5fe08d + e42bb49 commit 489061f

File tree

98 files changed

+3420
-776
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+3420
-776
lines changed

.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,6 @@ REACT_APP_BASE_API_URL=https://appserver.zenml.io/api/v1
22
#REACT_APP_BASE_API_URL=https://demoserver.zenml.io/api/v1
33
REACT_APP_HUB_API_URL="https://hubapi.zenml.io"
44
REACT_APP_VERSION=$npm_package_version
5+
6+
# Enables the cookie authentication, if not used please remove from the environment
7+
#REACT_APP_USE_COOKIE=true

.github/workflows/release.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
tags:
7-
- "*"
7+
- '*'
88

99
jobs:
1010
release:
@@ -26,19 +26,20 @@ jobs:
2626
yarn install
2727
yarn build
2828
env:
29-
REACT_APP_HUB_API_URL: "https://hubapi.zenml.io"
30-
REACT_APP_BASE_API_URL: "/api/v1"
29+
REACT_APP_HUB_API_URL: 'https://hubapi.zenml.io'
30+
REACT_APP_BASE_API_URL: '/api/v1'
3131
REACT_APP_MOCKAPI_RESPONSE: false
32+
REACT_APP_USE_COOKIE: 'true'
3233
REACT_APP_VERSION: ${{ steps.get_version.outputs.VERSION }}
3334
- name: Generate Changelog
3435
uses: heinrichreimer/[email protected]
3536
with:
3637
token: ${{ secrets.GITHUB_TOKEN }}
37-
pullRequests: "false"
38-
onlyLastTag: "true"
39-
stripGeneratorNotice: "true"
40-
issuesWoLabels: "true"
41-
stripHeaders: "true"
38+
pullRequests: 'false'
39+
onlyLastTag: 'true'
40+
stripGeneratorNotice: 'true'
41+
issuesWoLabels: 'true'
42+
stripHeaders: 'true'
4243
- name: Create release archive
4344
run: |
4445
tar -zcf zenml-dashboard.tar.gz -C build --transform="s#\.\/##" .
@@ -50,6 +51,6 @@ jobs:
5051
zenml-dashboard.tar.gz
5152
zenml-dashboard.tar.gz.sha256
5253
body_path: ./CHANGELOG.md
53-
prerelease: "true"
54+
prerelease: 'true'
5455
env:
5556
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ The installation is as follows:
8181
First, there is a pre-requisite to use [`node`](https://www.npmjs.com/) version 14.20.0 exactly. One can do this by installing the [`nvm`](https://github.com/nvm-sh/nvm) utility and then doing
8282

8383
```
84-
nvm install 14.20.0
85-
nvm use 14.20.0
84+
nvm install 18
85+
nvm use 18
8686
```
8787

8888
Users also need to have [`yarn`](https://yarnpkg.com/) installed.

0 commit comments

Comments
 (0)