Skip to content

Files

Latest commit

341fb0a · Jan 1, 2025

History

History
40 lines (26 loc) · 888 Bytes

README.md

File metadata and controls

40 lines (26 loc) · 888 Bytes

Example app

This example app is a simple React / TypeScript frontend. The only code is a simple component that renders EQTY's: eqty-agent-policy-plane.

See this app's code: App.tsx

Before Running

You need to clone (in a separate folder) + link the eqty-agent-policy-plane package repo.

GitHub: eqty-agent-policy-plane

Clone, install, and link the eqty-agent-policy-plane package

git clone https://github.com/eqty-io/eqty-agent-policy-plane.git
cd eqty-agent-policy-plane
npm install
npm run build
npm link

Now you will be able to use the component in other local apps.

Running this app

(cd into this app's folder)

Link the eqty-agent-policy-plane package

npm link eqty-agent-policy-plane

Install and run as normal

npm install
npm run dev