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

Add an index page with pointers to the interactive lessons #650

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 5 additions & 0 deletions src/Documentation/sidebar.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
[
{
"slug": "learn",
"label": "Learn DVC",
dashohoxha marked this conversation as resolved.
Show resolved Hide resolved
"source": "learn/index.md"
},
{
"slug": "get-started",
"source": "get-started/index.md",
Expand Down
8 changes: 8 additions & 0 deletions src/Nav/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ export default function Nav({ mobile = false }) {
>
Features
</Link>
<Link
href="https://katacoda.com/dvc/courses/basics"
dashohoxha marked this conversation as resolved.
Show resolved Hide resolved
onClick={() => {
logEvent('menu', 'learn')
}}
>
Learn
</Link>
<Link
href="/doc"
onClick={() => {
Expand Down
22 changes: 22 additions & 0 deletions static/docs/learn/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Learn DVC

Learn basic concepts and features of DVC with these interactive lessons:

1. [Data Management](https://katacoda.com/dvc/courses/basics/data) <br/> The
core function of DVC is data tracking and management. Let's see how to do it.

2. [Getting the Best Performance](https://katacoda.com/dvc/courses/basics/performance)
<br/> It is important to optimize the DVC setup for having the best
performance with handling big data files.

3. [Tracking Data Versions](https://katacoda.com/dvc/courses/basics/versioning)
<br/> DVC takes advantage of GIT's versioning features to keep track of the
data versions.

4. [Sharing Data](https://katacoda.com/dvc/courses/basics/sharing) <br/> DVC
facilitates sharing of data between different people that work on the same
project.

5. [Stages And Pipelines](https://katacoda.com/dvc/courses/basics/pipelines)
<br/> DVC has a built-in way to connect ML steps into a DAG and run the full
pipeline end-to-end.