StaPH-B (State Public Health Bioinformatics) Nexus - A searchable resource platform for bioinformatics pipelines, training materials, and resources.
For developers adding content or categories to the search:
- Nexus Search Guide - Complete implementation guide
- Quick Reference - Fast lookup and code snippets (Start here!)
- Architecture Diagrams - Visual system overview
- CSS Theme Guide - Customize site colors and design
All documentation is in the /docs directory with a comprehensive README.
This project uses a harmonized CSS design system for easy theme customization. To change the site's color scheme, simply update the theme colors in app/assets/css/main.css. See the Theme Guide for details.
Look at the Nuxt Content documentation to learn more.
Make sure to install dependencies:
# npm
npm install
# pnpm
pnpm install
# yarn
yarn install
# bun
bun installStart the development server on http://localhost:3000:
# npm
npm run dev
# pnpm
pnpm dev
# yarn
yarn dev
# bun
bun run devBuild the application for production:
# npm
npm run build
# pnpm
pnpm build
# yarn
yarn build
# bun
bun run buildLocally preview production build:
# npm
npm run preview
# pnpm
pnpm preview
# yarn
yarn preview
# bun
bun run previewCheck out the deployment documentation for more information.