notebooks/workspaces/frontend
Paulo Rego b2bee1d04b
chore(ws): Upgrade vulnerable package webpack-dev-server (#407)
Signed-off-by: paulovmr <832830+paulovmr@users.noreply.github.com>
2025-06-05 15:14:15 +00:00
..
__mocks__ feat(ws): initial commit for frontend (#19) 2024-06-28 00:48:41 +00:00
config feat(ws): create new script to start frontend returning mocked data (#314) 2025-05-13 13:11:21 +00:00
src feat(ws): added namespaces tab to workspace kind details (#406) 2025-06-05 11:01:15 +00:00
.env.cypress.mock chore(ws): add cypress structure and initial tests for frontend (#73) 2024-11-08 19:59:13 +00:00
.eslintignore chore(ws): Setup eslint and jest configurations (#141) 2024-12-03 15:21:59 +00:00
.eslintrc chore(ws): Setup eslint and jest configurations (#141) 2024-12-03 15:21:59 +00:00
.gitignore feat(ws): initial commit for frontend (#19) 2024-06-28 00:48:41 +00:00
.prettierignore feat(ws): Notebooks 2.0 // Frontend // Workspaces table // Live mockup (#140) 2024-12-03 13:47:58 +00:00
.prettierrc feat(ws): Notebooks 2.0 // Frontend // Workspaces table // Live mockup (#140) 2024-12-03 13:47:58 +00:00
OWNERS Proposing to add myself as owner of frontend directory (#72) 2024-11-05 21:43:11 +00:00
README.md feat(ws): create new script to start frontend returning mocked data (#314) 2025-05-13 13:11:21 +00:00
jest.config.js feat(ws): create new script to start frontend returning mocked data (#314) 2025-05-13 13:11:21 +00:00
package-lock.json chore(ws): Upgrade vulnerable package webpack-dev-server (#407) 2025-06-05 15:14:15 +00:00
package.json chore(ws): Upgrade vulnerable package webpack-dev-server (#407) 2025-06-05 15:14:15 +00:00
tsconfig.json feat(ws): create new script to start frontend returning mocked data (#314) 2025-05-13 13:11:21 +00:00

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