← 返回首页
feast/sdk/python/feast/ui at master · feast-dev/feast · GitHub
Skip to content

Navigation Menu

Toggle navigation
Sign in
Appearance settings
Search or jump to...

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Include my email address so I can be contacted

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Resetting focus

Latest commit

 

History

History
 master
Top

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
View all files

README.md

Example Feast UI App

This is an example React App that imports the Feast UI module.

See the module import in src/index.js. The main change this implements on top of a vanilla create-react-app is adding:

import ReactDOM from "react-dom"; import FeastUI from "@feast-dev/feast-ui"; import "@feast-dev/feast-ui/dist/feast-ui.css"; ReactDOM.render( <React.StrictMode> <FeastUI /> </React.StrictMode>, document.getElementById("root") );

It is used by the feast ui command to scaffold a local UI server. The feast python package bundles in resources produced from npm run build --omit=dev.

The feast ui command will generate the necessary projects-list.json file and initialize it for the UI to read.

Note: yarn start will not work on this because of the above dependency.

Dev

To test with a locally built Feast UI package, do:

make build-ui-local feast ui

OR

You can also do:

  1. yarn link in ui/
  2. yarn install in ui/
  3. yarn link in ui/node_modules/react
  4. yarn link in ui/node_modules/react-dom
  5. and then come here to do:
    yarn link "@feast-dev/feast" yarn link react yarn link react-dom yarn start

See also facebook/react#14257.

Footer

© 2026 GitHub, Inc.