Skip to content
This repository was archived by the owner on Apr 23, 2025. It is now read-only.

Add "archived" message and move GTO docs to dvc.org #363

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all 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
68 changes: 2 additions & 66 deletions content/docs/sidebar.json
Original file line number Diff line number Diff line change
Expand Up @@ -635,72 +635,8 @@
]
},
{
"slug": "gto",
"label": "GTO",
"source": "gto/index.md",
"children": [
{
"slug": "install",
"source": "install.md",
"label": "Installation"
},
{
"slug": "get-started",
"label": "Get Started",
"source": "get-started.md"
},
{
"slug": "user-guide",
"label": "User Guide",
"source": "user-guide/index.md"
},
{
"slug": "command-reference",
"label": "Command Reference",
"source": "command-reference/index.md",
"children": [
{
"slug": "assign",
"source": "assign.md",
"label": "assign"
},
{
"slug": "check-ref",
"source": "check-ref.md",
"label": "check-ref"
},
{
"slug": "deprecate",
"source": "deprecate.md",
"label": "deprecate"
},
{
"slug": "doctor",
"source": "doctor.md",
"label": "doctor"
},
{
"slug": "history",
"source": "history.md",
"label": "history"
},
{
"slug": "register",
"source": "register.md",
"label": "register"
},
{
"slug": "show",
"source": "show.md",
"label": "show"
},
{
"slug": "stages",
"source": "stages.md",
"label": "stages"
}
]
}
]
"url": "https://dvc.org/doc/gto",
"type": "external"
}
]
3 changes: 2 additions & 1 deletion redirects-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@
"^/(.+)/$ /$1",

"^/doc/user-guide/remote-projects$ /doc/user-guide/remote-objects 302",
"^/doc/get-started/(.+)$ /doc/get-started 302"
"^/doc/get-started/(.+)$ /doc/get-started 302",
"^/doc/gto/(.*)? https://dvc.org/doc/gto/$1 302"
]
Original file line number Diff line number Diff line change
@@ -1,21 +1,17 @@
import cn from 'classnames'
import React from 'react'
import SmartLink from '../../../../../components/SmartLink'

import * as styles from './index.module.css'

const Alert: React.FC<{ collapsed: boolean }> = ({ collapsed }) => (
<div className={cn(styles.alert, collapsed && styles.collapsed)}>
<div className={styles.text}>
<span className={styles.icon} role="img" aria-label="rocket">
🚀
📦
</span>{' '}
<p>
MLEM now offers{' '}
<SmartLink href="https://iterative.ai/blog/mlem-k8s-sagemaker">
deployment to Kubernetes and Sagemaker
</SmartLink>{' '}
with a single command.
MLEM project is archived. You can use it, but no further support is
planned. Thank you for being with us!
</p>
</div>
</div>
Expand Down