docs: renamed yugabyte to yugabytedb (#19068)
* docs: renamed yugabyte to yugabytedb * fixed redirect error * pass that test!
This commit is contained in:
parent
aa0ec717a2
commit
7af26a0492
|
|
@ -56,7 +56,7 @@ A list of some of the recommended packages.
|
||||||
| [SQL Server](/docs/databases/sql-server) | `pip install pymssql` | `mssql://` |
|
| [SQL Server](/docs/databases/sql-server) | `pip install pymssql` | `mssql://` |
|
||||||
| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy ` | `teradata://{user}:{password}@{host}` |
|
| [Teradata](/docs/databases/teradata) | `pip install teradatasqlalchemy ` | `teradata://{user}:{password}@{host}` |
|
||||||
| [Vertica](/docs/databases/vertica) | `pip install sqlalchemy-vertica-python` | `vertica+vertica_python://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
|
| [Vertica](/docs/databases/vertica) | `pip install sqlalchemy-vertica-python` | `vertica+vertica_python://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
|
||||||
| [Yugabyte](/docs/databases/yugabyte) | `pip install psycopg2` | `postgresql://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
|
| [YugabyteDB](/docs/databases/yugabytedb) | `pip install psycopg2` | `postgresql://<UserName>:<DBPassword>@<Database Host>/<Database Name>` |
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,13 +1,13 @@
|
||||||
---
|
---
|
||||||
title: Yugabyte
|
title: YugabyteDB
|
||||||
hide_title: true
|
hide_title: true
|
||||||
sidebar_position: 38
|
sidebar_position: 38
|
||||||
version: 1
|
version: 1
|
||||||
---
|
---
|
||||||
|
|
||||||
## Yugabyte
|
## YugabyteDB
|
||||||
|
|
||||||
[Yugabyte](https://www.yugabyte.com/) is a distributed SQL database built on top of PostgreSQL.
|
[YugabyteDB](https://www.yugabyte.com/) is a distributed SQL database built on top of PostgreSQL.
|
||||||
|
|
||||||
Note that, if you're using docker-compose, the
|
Note that, if you're using docker-compose, the
|
||||||
Postgres connector library [psycopg2](https://www.psycopg.org/docs/)
|
Postgres connector library [psycopg2](https://www.psycopg.org/docs/)
|
||||||
|
|
@ -117,6 +117,10 @@ const config = {
|
||||||
to: '/docs/contributing/contributing-page',
|
to: '/docs/contributing/contributing-page',
|
||||||
from: '/docs/contributing/contribution-guidelines',
|
from: '/docs/contributing/contribution-guidelines',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
to: '/docs/databases/yugabytedb',
|
||||||
|
from: '/docs/databases/yugabyte/',
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
||||||
|
|
@ -139,7 +139,7 @@ export const Databases = [
|
||||||
imgName: 'teradata.png'
|
imgName: 'teradata.png'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: 'Yugabyte',
|
title: 'YugabyteDB',
|
||||||
href: "www.yugabyte.com",
|
href: "www.yugabyte.com",
|
||||||
imgName: 'yugabyte.png'
|
imgName: 'yugabyte.png'
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue