https://github.com/malloydata/malloy-explorer
Malloy Explorer Components
https://github.com/malloydata/malloy-explorer
Last synced: about 1 year ago
JSON representation
Malloy Explorer Components
- Host: GitHub
- URL: https://github.com/malloydata/malloy-explorer
- Owner: malloydata
- License: mit
- Created: 2025-02-28T01:45:33.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-09T19:39:15.000Z (about 1 year ago)
- Last Synced: 2025-06-09T19:41:34.900Z (about 1 year ago)
- Language: TypeScript
- Size: 1.95 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Development directions
- Install required packages
```
npm install
```
- To test, run the vite developer tool
```
npm run dev
```
- Open http://localhost:5173/
## Running against a local version of Malloy
1. Run `npm run malloy-build-and-link` once and whenever you need to pull in changes
2. If you need to pull in changes of `@malloydata/malloy-render`, then navigate to the `malloy` direcory and build it using `npm run build` first.
3. If you make changes to Malloy that are required by the explorer, then merge those into main, and that will trigger an automatic developer release of Malloy.
4. Once that release completes, run `npm run malloy-update` to update dependencies to that release. This will break the link to your local version of Malloy, so if you want to resume local development, re-run `npm run malloy-link`
5. To manually unlink without updating, you may run `npm run malloy-unlink`