Static site for exploring GO-CAM models.
This project uses Vite as the build tool and development server. To get started, clone the repository and install dependencies:
npm install
To start the development server, run:
npm run dev
This will start the server at http://localhost:5173
by default. You can open this URL in your browser to view the application.
Basic configuration can be set in src/config.tsx
. This file allows you to specify which fields of the indexed GO-CAM models to display by default, how to render them, which should be searchable, and which should be faceted.
The application is driven by a JSON file containing indexed GO-CAM models. Currently, the file is served as a static file from this project's public
directory.
If the format of this file changes, be sure to update the IndexedGoCam
type in src/types.ts
and the field configurations in src/config.tsx
.
TODO: document how to regenerate this file