-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Propose navigation updates #16718
base: main
Are you sure you want to change the base?
Propose navigation updates #16718
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,9 +53,9 @@ | |
"group": "Get started", | ||
"pages": [ | ||
"v3/get-started/index", | ||
"v3/get-started/whats-new-prefect-3", | ||
"v3/get-started/quickstart", | ||
"v3/get-started/install", | ||
"v3/get-started/quickstart" | ||
"v3/get-started/whats-new-prefect-3" | ||
], | ||
"version": "v3" | ||
}, | ||
|
@@ -101,7 +101,8 @@ | |
"v3/develop/visualize-flow-structure", | ||
"v3/develop/big-data", | ||
"v3/develop/cli-shell", | ||
"v3/develop/secrets" | ||
"v3/develop/secrets", | ||
"v3/develop/test-workflows" | ||
], | ||
"version": "v3" | ||
}, | ||
|
@@ -145,8 +146,7 @@ | |
"v3/develop/settings-and-profiles", | ||
"v3/develop/settings-ref" | ||
] | ||
}, | ||
"v3/develop/test-workflows" | ||
} | ||
], | ||
"version": "v3" | ||
}, | ||
|
@@ -156,7 +156,7 @@ | |
"v3/deploy/index", | ||
"v3/deploy/run-flows-in-local-processes", | ||
{ | ||
"group": "Run flows on dynamic infrastructure", | ||
"group": "Run on dynamic infrastructure", | ||
"pages": [ | ||
"v3/deploy/infrastructure-concepts/work-pools", | ||
"v3/deploy/infrastructure-concepts/workers", | ||
|
@@ -169,18 +169,12 @@ | |
"version": "v3" | ||
}, | ||
{ | ||
"group": "Dynamic infrastructure examples", | ||
"group": "Infrastructure examples", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm okay with merging the two groups, but if we're going to do this we should also collapse the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh wait I meant to do that... |
||
"pages": [ | ||
"v3/deploy/infrastructure-examples/managed", | ||
"v3/deploy/infrastructure-examples/serverless", | ||
"v3/deploy/infrastructure-examples/docker", | ||
"v3/deploy/infrastructure-examples/kubernetes" | ||
], | ||
"version": "v3" | ||
}, | ||
{ | ||
"group": "Static infrastructure examples", | ||
"pages": [ | ||
"v3/deploy/infrastructure-examples/kubernetes", | ||
"v3/deploy/static-infrastructure-examples/docker" | ||
], | ||
"version": "v3" | ||
|
@@ -194,10 +188,16 @@ | |
"pages": [ | ||
"v3/automate/index", | ||
"v3/automate/add-schedules", | ||
"v3/automate/events/events", | ||
"v3/automate/events/automations-triggers", | ||
"v3/automate/events/custom-triggers", | ||
"v3/automate/events/webhook-triggers" | ||
{ | ||
"group": "Prefect events", | ||
"pages": [ | ||
"v3/automate/events/events", | ||
"v3/automate/events/automations-triggers", | ||
"v3/automate/events/custom-triggers", | ||
"v3/automate/events/webhook-triggers" | ||
], | ||
"version": "v3" | ||
} | ||
], | ||
"version": "v3" | ||
}, | ||
|
@@ -232,15 +232,15 @@ | |
], | ||
"version": "v3" | ||
}, | ||
"v3/manage/self-host" | ||
], | ||
"version": "v3" | ||
}, | ||
{ | ||
"group": "Migrate", | ||
"pages": [ | ||
"v3/resources/upgrade-to-prefect-3", | ||
"v3/manage/self-host", | ||
{ | ||
"group": "Migrate", | ||
"pages": [ | ||
"v3/resources/upgrade-to-prefect-3", | ||
"v3/resources/upgrade-agents-to-workers" | ||
Comment on lines
+239
to
240
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm okay with nixing the top-level Migrate section, but I'd argue that the Prefect 3.0 upgrade guide belongs under Develop (since it's more code focused) and the upgrade agents to workers guide belongs under Operate (since it's more infra focused). |
||
], | ||
"version": "v3" | ||
} | ||
], | ||
"version": "v3" | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I recently merged a PR to move the quickstart to the end of this group so that the schedule tutorial shows up next in the logical flow. I think that makes more sense than having the installation page follow.
#16705