Live site: https://oerschema.org
This Remix app hosts the OER Schema documentation, schema browser, outline builder UI, and the VitePress plugin docs.
npm install
npm run devThe dev server runs at http://localhost:5173/.
npm run dev— Remix dev server (Vite)npm run build— production buildnpm run start— run the production server locallynpm run lint— lint sourcesnpm run typecheck— type checkingnpm run build:vercel— Vercel build entry
- Framework: Remix
- Output directory:
build/client - Build command:
npm run build:vercel - Middleware handles legacy redirects to class/property pages.
Published package: vitepress-plugin-oer-schema (npm).
Install:
npm install vitepress-plugin-oer-schemaUse in .vitepress/config:
import { oerSchemaPlugin } from "vitepress-plugin-oer-schema";
import "vitepress-plugin-oer-schema/styles.css";
export default {
markdown: {
config: (md) => md.use(oerSchemaPlugin),
},
};The previous static schema site is located in the open-curriculum/legacy-site repo.