| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
parent directory.. | ||||
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.
To test with a locally built Feast UI package, do:
make build-ui-local
feast uiOR
You can also do:
yarn link "@feast-dev/feast"
yarn link react
yarn link react-dom
yarn startSee also react/react#14257.
| Back | FazBrowse Home | New Git URL |