|
| 1 | +// @ts-check |
| 2 | +import { defineConfig } from 'astro/config'; |
| 3 | +import starlight from '@astrojs/starlight'; |
| 4 | + |
| 5 | +export default defineConfig({ |
| 6 | + site: 'https://psy-fer.github.io', |
| 7 | + base: '/rustar-aligner', |
| 8 | + integrations: [ |
| 9 | + starlight({ |
| 10 | + title: 'rustar-aligner', |
| 11 | + logo: { |
| 12 | + src: './src/assets/rustar-icon.svg', |
| 13 | + }, |
| 14 | + favicon: '/favicon.svg', |
| 15 | + components: { |
| 16 | + Header: './src/components/Header.astro', |
| 17 | + }, |
| 18 | + customCss: ['./src/styles/custom.css'], |
| 19 | + social: [ |
| 20 | + { |
| 21 | + icon: 'github', |
| 22 | + label: 'GitHub', |
| 23 | + href: 'https://github.com/Psy-Fer/rustar-aligner', |
| 24 | + }, |
| 25 | + ], |
| 26 | + editLink: { |
| 27 | + baseUrl: 'https://github.com/Psy-Fer/rustar-aligner/edit/main/docs/', |
| 28 | + }, |
| 29 | + sidebar: [ |
| 30 | + { |
| 31 | + label: 'Getting started', |
| 32 | + items: [ |
| 33 | + { label: 'Introduction', slug: 'getting-started/introduction' }, |
| 34 | + { label: 'Installation', slug: 'getting-started/installation' }, |
| 35 | + { label: 'Quick start', slug: 'getting-started/quick-start' }, |
| 36 | + ], |
| 37 | + }, |
| 38 | + { |
| 39 | + label: 'Guides', |
| 40 | + items: [ |
| 41 | + { label: 'Generating a genome index', slug: 'guides/genome-index' }, |
| 42 | + { label: 'Single-end alignment', slug: 'guides/single-end' }, |
| 43 | + { label: 'Paired-end alignment', slug: 'guides/paired-end' }, |
| 44 | + { label: 'Two-pass mode', slug: 'guides/two-pass' }, |
| 45 | + { label: 'Chimeric detection', slug: 'guides/chimeric' }, |
| 46 | + { label: 'Gene quantification', slug: 'guides/quantification' }, |
| 47 | + { label: 'Migrating from STAR', slug: 'guides/migrating-from-star' }, |
| 48 | + ], |
| 49 | + }, |
| 50 | + { |
| 51 | + label: 'Reference', |
| 52 | + items: [ |
| 53 | + { label: 'CLI parameters', slug: 'reference/cli-parameters' }, |
| 54 | + { label: 'Output files', slug: 'reference/output-files' }, |
| 55 | + { label: 'STAR compatibility', slug: 'reference/star-compatibility' }, |
| 56 | + { label: 'Performance', slug: 'reference/performance' }, |
| 57 | + ], |
| 58 | + }, |
| 59 | + { |
| 60 | + label: 'About', |
| 61 | + items: [ |
| 62 | + { label: 'Contributing', slug: 'about/contributing' }, |
| 63 | + { label: 'Changelog', slug: 'about/changelog' }, |
| 64 | + { label: 'License', slug: 'about/license' }, |
| 65 | + ], |
| 66 | + }, |
| 67 | + ], |
| 68 | + }), |
| 69 | + ], |
| 70 | +}); |
0 commit comments