notebooks/workspaces/frontend
Charles Thao 51a7fbec69 Move form view to edit mode only
Signed-off-by: Charles Thao <cthao@redhat.com>
2025-06-30 16:53:04 -04:00
..
.husky chore(ws): lint frontend on each commit (#440) 2025-06-25 10:51:16 +00:00
.vscode feat(ws): add fallback mechanism to broken images (#448) 2025-06-27 13:46:17 +00:00
__mocks__
config
eslint-local-rules chore(ws): show ESLint errors from local rules on IDE (#439) 2025-06-25 10:52:16 +00:00
src Move form view to edit mode only 2025-06-30 16:53:04 -04:00
.env.cypress.mock
.eslintignore
.eslintrc.js chore(ws): show ESLint errors from local rules on IDE (#439) 2025-06-25 10:52:16 +00:00
.gitignore feat(ws): Notebooks v2 Create Workspace Kind (#365) 2025-06-25 10:50:15 +00:00
.prettierignore
.prettierrc
OWNERS chore: add OWNERS files with reviewers and labels (#450) 2025-06-26 21:42:17 +00:00
README.md
jest.config.js
package-lock.json chore(ws): show ESLint errors from local rules on IDE (#439) 2025-06-25 10:52:16 +00:00
package.json chore(ws): show ESLint errors from local rules on IDE (#439) 2025-06-25 10:52:16 +00:00
tsconfig.json

README.md

Kubeflow Workspaces Frontend

The Kubeflow Workspaces Frontend is the web user interface used to monitor and manage Kubeflow Workspaces as part of Kubeflow Notebooks 2.0.

⚠️ Warning ⚠️

The Kubeflow Workspaces Frontend is a work in progress and is NOT currently ready for use. We greatly appreciate any contributions.

Dev Setup

Requirements

This project requires the following tools to be installed on your system:

  • NodeJS and NPM
    • Node recommended version -> 20.17.0
    • NPM recommended version -> 10.8.2

Development

  1. Clone the repository:

    git clone https://github.com/kubeflow/notebooks.git
    
  2. Checkout the Notebooks 2.0 development branch:

    git checkout notebooks-v2
    
  3. Navigate to the frontend directory and install the project dependencies.

    cd workspaces/frontend && npm install
    

Build the Project

npm run build

Serve the UI Locally

This is the default setup for running the UI locally. Make sure you build the project using the instructions above prior to running the command below.

npm run start:dev

The command above requires the backend to be active in order to serve data. To run the UI independently, without establishing a connection to the backend, use the following command to start the application with a mocked API:

npm run start:dev:mock

Testing

Run all tests:

npm run test

Linting

Check for linting issues:

npm run test:lint

Automatically fix linting issues:

npm run test:fix