AbeOmor / mlflow-website

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MLflow Website

This repository contains the source code for the MLflow website, which is built using Docusaurus.

Preview

When a new commit is pushed to the main branch, the website is automatically built and deployed to the gh-pages branch. You can preview the website at the following URL:

https://mlflow.github.io/mlflow-website/

Development

Requirements

  • node>=18
  • yarn

Commands

cd website

# Install dependencies
yarn

# Start development server
yarn start

# Build production website
yarn build

# Format code
yarn fmt

# Convert blog post and release notes into typescript code
yarn compile

Building docs

This repository doesn't contain the MLflow documentation. To populate the /website/static/docs directory, run the following commands:

cd /path/to/mlflow/docs
make rsthtml

mkdir -p /path/to/mlflow-website/website/static/docs/latest
cp -r build/html/* /path/to/mlflow-website/website/docs/latest

Example PRs

  • Add a new blog post: #3
  • Add a new page: #22

About


Languages

Language:TypeScript 83.4%Language:CSS 13.2%Language:JavaScript 1.7%Language:MDX 1.6%