Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate to docusaurus #6533

Merged
merged 8 commits into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 2 additions & 8 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,19 +64,13 @@ jobs:

- name: Set up Python
uses: actions/setup-python@v1

- name: Install dependencies
working-directory: docs
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt

- name: Build docs
working-directory: docs
run: mkdocs build --verbose --clean --site-dir site
run: yarn && yarn build

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/site
publish_dir: ./docs/build
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,7 @@ packages/cli/.git-data.json
dictionary.dic

temp/

# Docusaurus
.docusaurus
build/
jeluard marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions .wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ DVs
Discv
DockerHub
Dockerized
Docusaurus
EIP
EIPs
EL
Expand All @@ -39,6 +40,7 @@ Geth
Github
Gossipsub
Grafana
HTTPS
HackMD
Homebrew
IPFS
Expand Down Expand Up @@ -91,6 +93,7 @@ api
async
backfill
beaconcha
blockRoot
blockchain
bootnode
bootnodes
Expand Down
25 changes: 25 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Website

This website is built using [Docusaurus](https://docusaurus.io/), a modern static website generator.

### Installation

```
$ yarn
```

### Local Development

```
$ yarn start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### Build

```
$ yarn build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.
jeluard marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions docs/babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [require.resolve('@docusaurus/core/lib/babel/preset')],
};
111 changes: 111 additions & 0 deletions docs/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
// @ts-check
// `@type` JSDoc annotations allow editor autocompletion and type checking
// (when paired with `@ts-check`).
// There are various equivalent ways to declare your Docusaurus config.
// See: https://docusaurus.io/docs/api/docusaurus-config
jeluard marked this conversation as resolved.
Show resolved Hide resolved

import {themes as prismThemes} from "prism-react-renderer";

/** @type {import('@docusaurus/types').Config} */
const config = {
title: "Lodestar",
tagline: "TypeScript Implementation of Ethereum Consensus",
favicon: "img/favicon.ico",

// Set the production url of your site here
url: "https://chainsafe.github.io/",
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: "/lodestar/",

// GitHub pages deployment config.
organizationName: "ChainSafe",
projectName: "lodestar",

onBrokenLinks: "warn",
onBrokenMarkdownLinks: "warn",

i18n: {
defaultLocale: "en",
locales: ["en"],
},

presets: [
[
"classic",
/** @type {import('@docusaurus/preset-classic').Options} */
({
docs: {
path: "pages",
sidebarPath: "./sidebars.js",
editUrl: "https://github.com/ChainSafe/lodestar/tree/unstable/docs/",
routeBasePath: "/",
},
theme: {
customCss: "./src/css/custom.css",
},
}),
],
],

markdown: {
mermaid: true,
jeluard marked this conversation as resolved.
Show resolved Hide resolved
},
themes: [
'@docusaurus/theme-mermaid',
'@easyops-cn/docusaurus-search-local'
],

themeConfig:
/** @type {import('@docusaurus/preset-classic').ThemeConfig} */
({
navbar: {
title: "Lodestar Documentation",
logo: {
alt: "Lodestar Logo",
src: "img/logo.png",
},
items: [
{
href: "https://github.com/ChainSafe/lodestar",
label: "GitHub",
position: "right",
},
],
},
footer: {
style: "dark",
links: [
{
title: "Docs",
items: [
{
label: "Introduction",
to: "/introduction",
},
],
},
{
title: "Community",
items: [
{
label: "Discord",
href: "https://discord.com/invite/yjyvFRP",
},
{
label: "Twitter",
href: "https://twitter.com/lodestar_eth",
},
],
},
],
copyright: `Copyright © ${new Date().getFullYear()} ChainSafe, Inc.`,
jeluard marked this conversation as resolved.
Show resolved Hide resolved
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
},
}),
};

export default config;
Binary file removed docs/images/favicon.ico
Binary file not shown.
148 changes: 0 additions & 148 deletions docs/mkdocs.yml

This file was deleted.

46 changes: 46 additions & 0 deletions docs/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "@lodestar/docs",
"version": "0.0.0",
"private": true,
"scripts": {
matthewkeil marked this conversation as resolved.
Show resolved Hide resolved
"docusaurus": "docusaurus",
"start": "docusaurus start",
"build": "docusaurus build",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "3.1.1",
"@docusaurus/preset-classic": "3.1.1",
"@docusaurus/theme-mermaid": "^3.1.1",
"@easyops-cn/docusaurus-search-local": "^0.40.1",
"@mdx-js/react": "^3.0.0",
"clsx": "^2.0.0",
"prism-react-renderer": "^2.3.0",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.1.1",
"@docusaurus/types": "3.1.1"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 3 chrome version",
"last 3 firefox version",
"last 5 safari version"
]
},
"engines": {
"node": ">=18.0"
}
}
Loading
Loading