-
Notifications
You must be signed in to change notification settings - Fork 15
docs(self-host): overhaul deploy section for the full-featured platform era #180
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
Changes from all commits
ded01ea
861d0c9
40b4694
2bca021
d7e5c3e
5cb2501
8c1db8d
ece89d8
30a0ac5
b40bf7e
852d87a
b3b68a8
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 |
|---|---|---|
|
|
@@ -35,6 +35,78 @@ | |
| { | ||
| "source": "/zh/about", | ||
| "destination": "/zh/basic/ai/overview" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/production-overview", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/production-overview", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/k8s", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/k8s", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/aws", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/aws", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/azure", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/azure", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/gcp", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/gcp", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/one-key", | ||
| "destination": "/en/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/one-key", | ||
| "destination": "/zh/deploy/choose" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/storage", | ||
| "destination": "/en/deploy/env" | ||
|
Comment on lines
+88
to
+89
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.
When users follow the retired Useful? React with 👍 / 👎. |
||
| }, | ||
| { | ||
| "source": "/zh/deploy/storage", | ||
| "destination": "/zh/deploy/env" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/database-connection", | ||
| "destination": "/en/deploy/env" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/database-connection", | ||
| "destination": "/zh/deploy/env" | ||
| }, | ||
| { | ||
| "source": "/en/deploy/agent-runtime", | ||
| "destination": "/en/deploy/architecture" | ||
| }, | ||
| { | ||
| "source": "/zh/deploy/agent-runtime", | ||
| "destination": "/zh/deploy/architecture" | ||
| } | ||
| ], | ||
| "navigation": { | ||
|
|
@@ -295,8 +367,8 @@ | |
| { | ||
| "group": "Quick Start", | ||
| "pages": [ | ||
| "en/deploy/docker", | ||
| "en/deploy/one-key" | ||
| "en/deploy/choose", | ||
| "en/deploy/architecture" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -315,27 +387,12 @@ | |
| "en/basic/admin-panel/multitenancy" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Production Deployment", | ||
| "pages": [ | ||
| "en/deploy/production-overview", | ||
| "en/deploy/agent-runtime", | ||
| "en/deploy/k8s", | ||
| "en/deploy/aws", | ||
| "en/deploy/azure", | ||
| "en/deploy/gcp" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "Configuration", | ||
| "pages": [ | ||
| "en/deploy/env", | ||
| "en/deploy/storage", | ||
| "en/deploy/email", | ||
| "en/deploy/database-connection", | ||
| "en/deploy/oidc", | ||
| "en/deploy/nginx", | ||
| "en/deploy/dashboard" | ||
| "en/deploy/oidc" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -659,8 +716,8 @@ | |
| { | ||
| "group": "快速开始", | ||
| "pages": [ | ||
| "zh/deploy/docker", | ||
| "zh/deploy/one-key" | ||
| "zh/deploy/choose", | ||
| "zh/deploy/architecture" | ||
| ] | ||
| }, | ||
| { | ||
|
|
@@ -679,27 +736,12 @@ | |
| "zh/basic/admin-panel/multitenancy" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "生产环境部署", | ||
| "pages": [ | ||
| "zh/deploy/production-overview", | ||
| "zh/deploy/agent-runtime", | ||
| "zh/deploy/k8s", | ||
| "zh/deploy/aws", | ||
| "zh/deploy/azure", | ||
| "zh/deploy/gcp" | ||
| ] | ||
| }, | ||
| { | ||
| "group": "配置", | ||
| "pages": [ | ||
| "zh/deploy/env", | ||
| "zh/deploy/storage", | ||
| "zh/deploy/email", | ||
| "zh/deploy/database-connection", | ||
| "zh/deploy/oidc", | ||
| "zh/deploy/nginx", | ||
| "zh/deploy/dashboard" | ||
| "zh/deploy/oidc" | ||
| ] | ||
| }, | ||
| { | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,7 +4,7 @@ noindex: true | |
| --- | ||
|
|
||
| <Tip> | ||
| **Self-hosted only**: Available for all versions with unlimited connections. For setup, see [Database Connection](/en/deploy/database-connection). | ||
| **Self-hosted only**: Available for all versions with unlimited connections. | ||
| </Tip> | ||
|
Comment on lines
6
to
8
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.
For self-hosted instances that have not configured Useful? React with 👍 / 👎. |
||
|
|
||
| Teable allows you to connect to its underlying PostgreSQL database through external tools for read-only queries. This enables integration with BI tools (PowerBI, Metabase, Superset), database clients (DataGrip, Navicat, TablePlus), low-code platforms (Appsmith, Budibase), and application code. | ||
|
|
||
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.
When users with existing bookmarks to the production overview land here, they now get only the path-selection matrix, while the Docker guide still scopes standalone Docker to small teams/evaluation and no replacement page carries the deleted overview's production sizing, HA, Redis, and storage guidance. This leaves 50+ user/basic self-host deployments without an actionable production path after the redirect; please redirect to documentation that retains those requirements or keep a production overview page.
Useful? React with 👍 / 👎.