diff --git a/sqlite-cloud/create-database.mdx b/sqlite-cloud/create-database.mdx index f98e205..e2d83b0 100644 --- a/sqlite-cloud/create-database.mdx +++ b/sqlite-cloud/create-database.mdx @@ -22,7 +22,7 @@ To upload a local SQLite database via weblite, make a POST request to the `/v2/w ```bash curl -X 'POST' \ - 'https://.sqlite.cloud:8090/v2/weblite/.sqlite' \ + 'https://.sqlite.cloud/v2/weblite/.sqlite' \ -H 'accept: application/json' \ -H 'Authorization: Bearer sqlitecloud://.sqlite.cloud:8860?apikey=' \ -d '' @@ -52,7 +52,7 @@ The default encoding is set to UTF-8, and the default page size is 4096KB. To create a new database or upload an existing database via [Weblite](/docs/weblite), our REST API, you can make a request with the following parameters: ```bash curl -X 'POST' \ - 'https://.sqlite.cloud:8090/v2/weblite/.sqlite' \ + 'https://.sqlite.cloud/v2/weblite/.sqlite' \ -H 'accept: application/json' \ -H 'Authorization: Bearer sqlitecloud://.sqlite.cloud:8860?apikey=' \ -d '' diff --git a/sqlite-cloud/multi-code-example.mdx b/sqlite-cloud/multi-code-example.mdx index bf43d97..3fde715 100644 --- a/sqlite-cloud/multi-code-example.mdx +++ b/sqlite-cloud/multi-code-example.mdx @@ -25,7 +25,7 @@ export const WebliteSourceCode = `