otomilova / feature-store-ui

Web UI for feature stores

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Feature Store UI

Web UI for Feature Stores

Feature Store UI is a responsive web UI for Feature Stores. To use it make sure that Feature store you are using is compatible with contracts defined in this project. The Feature Store UI designed to view, modify and create identities used in feature store-like systems.

Features

  • Create and switch projects
  • Create, view and modify entities, features and feature tables
  • Clone entities and feature tables
  • Search entities, features and feature tables by labels, name or any other criteria

Sample UI Sample UI Sample UI Sample UI cloneFT FtOv editSource createFeature createFeature2 entitiesPage

Tech

Feature Store UI uses a number of open source projects to work properly:

Installation

Install the dependencies and devDependencies and start the server.

npm i
VITE_SERVER_URL=your_backend_url or use mock
npm run dev

For production environments...

npm i
VITE_SERVER_URL=your_backend_url
npm run preview

Docker

Feature Store UI is very easy to install and deploy in a Docker container.

By default, the Docker will expose port 8080, so change this within the Dockerfile if necessary. When ready, simply use the Dockerfile to build the image. Docker image requires VITE_SERVER_URL argument to run correctly:

docker build --build-arg VITE_SERVER_URL=<your_backend_url> -t <youruser>/feature-store-ui:${package.json.version} .

This will create the feature-store-ui image and pull in the necessary dependencies. Be sure to swap out ${package.json.version} with the actual version of Feature Store UI.

Once done, run the Docker image and map the port to whatever you wish on your host. In this example, we simply map port 8000 of the host to port 8080 of the Docker (or whatever port was exposed in the Dockerfile):

docker run -d -p 8080:8080 --restart=always --name=feature-store-ui <youruser>/feature-store-ui:${package.json.version}

Verify the deployment by navigating to your server address in your preferred browser.

127.0.0.1:8080

About

Web UI for feature stores


Languages

Language:TypeScript 94.2%Language:JavaScript 5.2%Language:HTML 0.3%Language:Dockerfile 0.1%Language:CSS 0.1%