From 95b5118d86740e6411f5dd220463b3547001f261 Mon Sep 17 00:00:00 2001 From: Conrad Hofmeyr Date: Thu, 16 Jan 2025 18:17:12 -0700 Subject: [PATCH 1/2] Update signup URLs --- client-sdk-references/flutter.mdx | 2 +- client-sdk-references/javascript-web.mdx | 2 +- client-sdk-references/kotlin-multiplatform.mdx | 2 +- client-sdk-references/react-native-and-expo.mdx | 2 +- client-sdk-references/swift.mdx | 2 +- installation/quickstart-guide.mdx | 2 +- integration-guides/flutterflow-+-powersync.mdx | 2 +- integration-guides/flutterflow-+-powersync/github-workflow.mdx | 2 +- integration-guides/supabase-+-powersync.mdx | 2 +- mint.json | 2 +- usage/tools/powersync-dashboard.mdx | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/client-sdk-references/flutter.mdx b/client-sdk-references/flutter.mdx index 2755128c..2e08a6b4 100644 --- a/client-sdk-references/flutter.mdx +++ b/client-sdk-references/flutter.mdx @@ -40,7 +40,7 @@ See the [SDK's README](https://pub.dev/packages/powersync#getting-started) for i Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/get-started?powersync=true)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/flutter#installation) the PowerSync Flutter SDK. diff --git a/client-sdk-references/javascript-web.mdx b/client-sdk-references/javascript-web.mdx index d4c42081..0d87478a 100644 --- a/client-sdk-references/javascript-web.mdx +++ b/client-sdk-references/javascript-web.mdx @@ -51,7 +51,7 @@ See the [SDK's README](https://www.npmjs.com/package/@powersync/web) for install Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/get-started?powersync=true)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/javascript-web#installation) the PowerSync Web SDK. diff --git a/client-sdk-references/kotlin-multiplatform.mdx b/client-sdk-references/kotlin-multiplatform.mdx index d8c72c31..64b2d247 100644 --- a/client-sdk-references/kotlin-multiplatform.mdx +++ b/client-sdk-references/kotlin-multiplatform.mdx @@ -47,7 +47,7 @@ See the [SDK's README](https://github.com/powersync-ja/powersync-kotlin?tab=read Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/get-started?powersync=true)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/kotlin-multiplatform#installation) the PowerSync SDK. diff --git a/client-sdk-references/react-native-and-expo.mdx b/client-sdk-references/react-native-and-expo.mdx index ea1441fe..7b2d3a15 100644 --- a/client-sdk-references/react-native-and-expo.mdx +++ b/client-sdk-references/react-native-and-expo.mdx @@ -53,7 +53,7 @@ By default this SDK connects to a PowerSync instance via WebSocket (from @powers Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/get-started?powersync=true)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/react-native-and-expo#installation) the PowerSync React Native SDK. diff --git a/client-sdk-references/swift.mdx b/client-sdk-references/swift.mdx index a2bcf5a1..8a0dd028 100644 --- a/client-sdk-references/swift.mdx +++ b/client-sdk-references/swift.mdx @@ -96,7 +96,7 @@ See the [To-Do List Demo app](https://github.com/powersync-ja/powersync-swift/tr Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/get-started?powersync=true)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. diff --git a/installation/quickstart-guide.mdx b/installation/quickstart-guide.mdx index 29cbf482..90733ecf 100644 --- a/installation/quickstart-guide.mdx +++ b/installation/quickstart-guide.mdx @@ -18,7 +18,7 @@ The following outlines our recommended steps to implement PowerSync in your proj - Sign up for a free PowerSync Cloud account [here](https://accounts.journeyapps.com/portal/get-started?powersync=true&s=docs-quickstart) if you want to go ahead with our cloud-hosted option. PowerSync can also be self-hosted — see instructions in step 3. + Sign up for a free PowerSync Cloud account [here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs-quickstart-quickstart) if you want to go ahead with our cloud-hosted option. PowerSync can also be self-hosted — see instructions in step 3. Configure your source database for PowerSync — see [Source Database Setup](/installation/database-setup). diff --git a/integration-guides/flutterflow-+-powersync.mdx b/integration-guides/flutterflow-+-powersync.mdx index edbff784..e95781d2 100644 --- a/integration-guides/flutterflow-+-powersync.mdx +++ b/integration-guides/flutterflow-+-powersync.mdx @@ -22,7 +22,7 @@ Used in conjunction with **FlutterFlow**, PowerSync enables developers to build ## Guide Overview - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/get-started?powersync=true) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. diff --git a/integration-guides/flutterflow-+-powersync/github-workflow.mdx b/integration-guides/flutterflow-+-powersync/github-workflow.mdx index 49480c9f..f27cdf01 100644 --- a/integration-guides/flutterflow-+-powersync/github-workflow.mdx +++ b/integration-guides/flutterflow-+-powersync/github-workflow.mdx @@ -27,7 +27,7 @@ Used in conjunction with **FlutterFlow**, PowerSync enables developers to build - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/get-started?powersync=true) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. ## Guide Overview diff --git a/integration-guides/supabase-+-powersync.mdx b/integration-guides/supabase-+-powersync.mdx index 8d49447b..ef243841 100644 --- a/integration-guides/supabase-+-powersync.mdx +++ b/integration-guides/supabase-+-powersync.mdx @@ -14,7 +14,7 @@ import SupabaseConnection from '/snippets/supabase-database-connection.mdx'; Used in conjunction with **Supabase**, PowerSync enables developers to build local-first & offline-first apps that are robust in poor network conditions and that have highly responsive frontends while relying on [Supabase](https://supabase.com/) for their backend. This guide provides instructions for how to configure PowerSync for use with your Supabase project. - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync Cloud (our cloud-hosted offering). If you haven't signed up for a **PowerSync** (Cloud) account yet, [click here](https://accounts.journeyapps.com/portal/get-started?powersync=true) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync Cloud (our cloud-hosted offering). If you haven't signed up for a **PowerSync** (Cloud) account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). diff --git a/mint.json b/mint.json index 284f77e3..bd33cd7b 100644 --- a/mint.json +++ b/mint.json @@ -41,7 +41,7 @@ ], "topbarCtaButton": { "name": "Get Started", - "url": "https://accounts.journeyapps.com/portal/get-started?powersync=true&s=docs", + "url": "https://accounts.journeyapps.com/portal/powersync-signup?s=docs-quickstart", "arrow": false, "style": "roundedRectangle" }, diff --git a/usage/tools/powersync-dashboard.mdx b/usage/tools/powersync-dashboard.mdx index d79e7bbe..044780eb 100644 --- a/usage/tools/powersync-dashboard.mdx +++ b/usage/tools/powersync-dashboard.mdx @@ -16,7 +16,7 @@ The dashboard is available here: [https://powersync.journeyapps.com/](https://po ### Hierarchy: Organization, project, instance -* After successfully [signing up](https://accounts.journeyapps.com/portal/get-started?powersync=true) for PowerSync Cloud, your PowerSync account is created. +* After successfully [signing up](https://accounts.journeyapps.com/portal/powersync-signup) for PowerSync Cloud, your PowerSync account is created. * Your account is assigned an **organization** on the [Free pricing plan](https://www.powersync.com/pricing). * A sample PowerSync **project** (named "PowerSync Project") is automatically created in this organization, and this project is your starting point after completing sign-up. It is opened by default in the dashboard: From 9170f6770751159b6b08ad7482cf52c3505576a2 Mon Sep 17 00:00:00 2001 From: benitav Date: Fri, 17 Jan 2025 09:58:59 +0200 Subject: [PATCH 2/2] Add docs custom source --- client-sdk-references/flutter.mdx | 2 +- client-sdk-references/javascript-web.mdx | 2 +- client-sdk-references/kotlin-multiplatform.mdx | 2 +- client-sdk-references/react-native-and-expo.mdx | 2 +- client-sdk-references/swift.mdx | 2 +- installation/quickstart-guide.mdx | 2 +- integration-guides/flutterflow-+-powersync.mdx | 2 +- integration-guides/flutterflow-+-powersync/github-workflow.mdx | 2 +- integration-guides/supabase-+-powersync.mdx | 2 +- mint.json | 2 +- usage/tools/powersync-dashboard.mdx | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/client-sdk-references/flutter.mdx b/client-sdk-references/flutter.mdx index 2e08a6b4..7057b721 100644 --- a/client-sdk-references/flutter.mdx +++ b/client-sdk-references/flutter.mdx @@ -40,7 +40,7 @@ See the [SDK's README](https://pub.dev/packages/powersync#getting-started) for i Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/flutter#installation) the PowerSync Flutter SDK. diff --git a/client-sdk-references/javascript-web.mdx b/client-sdk-references/javascript-web.mdx index 0d87478a..00f2eb2b 100644 --- a/client-sdk-references/javascript-web.mdx +++ b/client-sdk-references/javascript-web.mdx @@ -51,7 +51,7 @@ See the [SDK's README](https://www.npmjs.com/package/@powersync/web) for install Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/javascript-web#installation) the PowerSync Web SDK. diff --git a/client-sdk-references/kotlin-multiplatform.mdx b/client-sdk-references/kotlin-multiplatform.mdx index 64b2d247..798eaba8 100644 --- a/client-sdk-references/kotlin-multiplatform.mdx +++ b/client-sdk-references/kotlin-multiplatform.mdx @@ -47,7 +47,7 @@ See the [SDK's README](https://github.com/powersync-ja/powersync-kotlin?tab=read Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/kotlin-multiplatform#installation) the PowerSync SDK. diff --git a/client-sdk-references/react-native-and-expo.mdx b/client-sdk-references/react-native-and-expo.mdx index 7b2d3a15..5c7f2f0f 100644 --- a/client-sdk-references/react-native-and-expo.mdx +++ b/client-sdk-references/react-native-and-expo.mdx @@ -53,7 +53,7 @@ By default this SDK connects to a PowerSync instance via WebSocket (from @powers Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. * [Installed](/client-sdk-references/react-native-and-expo#installation) the PowerSync React Native SDK. diff --git a/client-sdk-references/swift.mdx b/client-sdk-references/swift.mdx index 8a0dd028..2d7e8e36 100644 --- a/client-sdk-references/swift.mdx +++ b/client-sdk-references/swift.mdx @@ -96,7 +96,7 @@ See the [To-Do List Demo app](https://github.com/powersync-ja/powersync-swift/tr Before implementing the PowerSync SDK in your project, make sure you have completed these steps: -* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup)) or [self-host PowerSync](/self-hosting/getting-started). +* Signed up for a PowerSync Cloud account ([here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs)) or [self-host PowerSync](/self-hosting/getting-started). * [Configured your backend database](/installation/database-setup) and connected it to your PowerSync instance. diff --git a/installation/quickstart-guide.mdx b/installation/quickstart-guide.mdx index 90733ecf..0fa794c6 100644 --- a/installation/quickstart-guide.mdx +++ b/installation/quickstart-guide.mdx @@ -18,7 +18,7 @@ The following outlines our recommended steps to implement PowerSync in your proj - Sign up for a free PowerSync Cloud account [here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs-quickstart-quickstart) if you want to go ahead with our cloud-hosted option. PowerSync can also be self-hosted — see instructions in step 3. + Sign up for a free PowerSync Cloud account [here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs) if you want to go ahead with our cloud-hosted option. PowerSync can also be self-hosted — see instructions in step 3. Configure your source database for PowerSync — see [Source Database Setup](/installation/database-setup). diff --git a/integration-guides/flutterflow-+-powersync.mdx b/integration-guides/flutterflow-+-powersync.mdx index e95781d2..055df681 100644 --- a/integration-guides/flutterflow-+-powersync.mdx +++ b/integration-guides/flutterflow-+-powersync.mdx @@ -22,7 +22,7 @@ Used in conjunction with **FlutterFlow**, PowerSync enables developers to build ## Guide Overview - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. diff --git a/integration-guides/flutterflow-+-powersync/github-workflow.mdx b/integration-guides/flutterflow-+-powersync/github-workflow.mdx index f27cdf01..fe74ee79 100644 --- a/integration-guides/flutterflow-+-powersync/github-workflow.mdx +++ b/integration-guides/flutterflow-+-powersync/github-workflow.mdx @@ -27,7 +27,7 @@ Used in conjunction with **FlutterFlow**, PowerSync enables developers to build - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync. If you haven't signed up for a **PowerSync** account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). This guide also assumes that you already have **Flutter** set up. ## Guide Overview diff --git a/integration-guides/supabase-+-powersync.mdx b/integration-guides/supabase-+-powersync.mdx index ef243841..7b8ffd34 100644 --- a/integration-guides/supabase-+-powersync.mdx +++ b/integration-guides/supabase-+-powersync.mdx @@ -14,7 +14,7 @@ import SupabaseConnection from '/snippets/supabase-database-connection.mdx'; Used in conjunction with **Supabase**, PowerSync enables developers to build local-first & offline-first apps that are robust in poor network conditions and that have highly responsive frontends while relying on [Supabase](https://supabase.com/) for their backend. This guide provides instructions for how to configure PowerSync for use with your Supabase project. - Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync Cloud (our cloud-hosted offering). If you haven't signed up for a **PowerSync** (Cloud) account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). + Before you proceed, this guide assumes that you have already signed up for free accounts with both Supabase and PowerSync Cloud (our cloud-hosted offering). If you haven't signed up for a **PowerSync** (Cloud) account yet, [click here](https://accounts.journeyapps.com/portal/powersync-signup?s=docs) (and if you haven't signed up for Supabase yet, [click here](https://supabase.com/dashboard/sign-up)). diff --git a/mint.json b/mint.json index bd33cd7b..63996715 100644 --- a/mint.json +++ b/mint.json @@ -41,7 +41,7 @@ ], "topbarCtaButton": { "name": "Get Started", - "url": "https://accounts.journeyapps.com/portal/powersync-signup?s=docs-quickstart", + "url": "https://accounts.journeyapps.com/portal/powersync-signup?s=docs", "arrow": false, "style": "roundedRectangle" }, diff --git a/usage/tools/powersync-dashboard.mdx b/usage/tools/powersync-dashboard.mdx index 044780eb..a61ec830 100644 --- a/usage/tools/powersync-dashboard.mdx +++ b/usage/tools/powersync-dashboard.mdx @@ -16,7 +16,7 @@ The dashboard is available here: [https://powersync.journeyapps.com/](https://po ### Hierarchy: Organization, project, instance -* After successfully [signing up](https://accounts.journeyapps.com/portal/powersync-signup) for PowerSync Cloud, your PowerSync account is created. +* After successfully [signing up](https://accounts.journeyapps.com/portal/powersync-signup?s=docs) for PowerSync Cloud, your PowerSync account is created. * Your account is assigned an **organization** on the [Free pricing plan](https://www.powersync.com/pricing). * A sample PowerSync **project** (named "PowerSync Project") is automatically created in this organization, and this project is your starting point after completing sign-up. It is opened by default in the dashboard: