From 8bf76aff07c0e226ef801408b428f33bc2702a80 Mon Sep 17 00:00:00 2001 From: itowlson Date: Tue, 1 Apr 2025 11:16:21 +1300 Subject: [PATCH] Switch install and hub links over to new site Signed-off-by: itowlson --- content/v3/install.md | 18 +++++++++--------- content/v3/plugin-authoring.md | 2 +- content/v3/quickstart.md | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/content/v3/install.md b/content/v3/install.md index 83ccf77c..9a3d6acf 100644 --- a/content/v3/install.md +++ b/content/v3/install.md @@ -53,7 +53,7 @@ Another option (other than brew) is to use our installer script. The installer s ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash ``` Once you have run the installer script, it is highly recommended to add Spin to a folder, which is on your path, e.g.: @@ -71,7 +71,7 @@ To install a specific version (`v1.2.3` is just an example), you can pass argume ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash -s -- -v v1.2.3 +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash -s -- -v v1.2.3 ``` To install the canary version of spin, you should pass the argument `-v canary`. The canary version is always the latest commit to the main branch of Spin: @@ -79,7 +79,7 @@ To install the canary version of spin, you should pass the argument `-v canary`. ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash -s -- -v canary +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash -s -- -v canary ``` {{ blockEnd }} @@ -117,7 +117,7 @@ The installer script also installs Spin along with a starter set of language tem ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash ``` Once you have run the installer script, it is highly recommended to add Spin to a folder, which is on your path, e.g.: @@ -135,7 +135,7 @@ To install a specific version (`v1.2.3` is just an example), you can pass argume ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash -s -- -v v1.2.3 +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash -s -- -v v1.2.3 ``` To install the canary version of spin, you should pass the argument `-v canary`. The canary version is always the latest commit to the main branch of Spin: @@ -143,7 +143,7 @@ To install the canary version of spin, you should pass the argument `-v canary`. ```bash -$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash -s -- -v canary +$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash -s -- -v canary ``` {{ blockEnd }} @@ -309,7 +309,7 @@ For more information, please visit the [managing plugins](./managing-plugins) se ## Next Steps {{suh_cards}} -{{card_element "sample" "Checklist Sample App" "A checklist app that persists data in a key value store" "https://developer.fermyon.com/hub/preview/sample_checklist" "Typescript,Http,Kv" true }} -{{card_element "template" "Zola SSG Template" "A template for using Zola framework to create a static webpage" "https://developer.fermyon.com/hub/preview/template_zola_ssg" "rust" true }} -{{card_element "sample" "AI-assisted News Summarizer" "Read an RSS newsfeed and have AI summarize it for you" "https://developer.fermyon.com/hub/preview/sample_newsreader_ai" "Typescript,Javascript,Ai" true }} +{{card_element "sample" "Checklist Sample App" "A checklist app that persists data in a key value store" "/hub/preview/sample_checklist" "Typescript,Http,Kv" true }} +{{card_element "template" "Zola SSG Template" "A template for using Zola framework to create a static webpage" "/hub/preview/template_zola_ssg" "rust" true }} +{{card_element "sample" "AI-assisted News Summarizer" "Read an RSS newsfeed and have AI summarize it for you" "/hub/preview/sample_newsreader_ai" "Typescript,Javascript,Ai" true }} {{blockEnd}} diff --git a/content/v3/plugin-authoring.md b/content/v3/plugin-authoring.md index b28fd095..82c9962a 100644 --- a/content/v3/plugin-authoring.md +++ b/content/v3/plugin-authoring.md @@ -134,7 +134,7 @@ $ spin plugin install --file practice.json $ spin practice ``` -> While developing a plugin, you can [use the `pluginify` plugin to automate packaging and installation](https://developer.fermyon.com/hub/preview/plugin_spin_pluginify) for testing in the Spin environment. This saves going through the package-manifest-install cycle every time you want to try an update! +> While developing a plugin, you can [use the `pluginify` plugin to automate packaging and installation](/hub/preview/plugin_spin_pluginify) for testing in the Spin environment. This saves going through the package-manifest-install cycle every time you want to try an update! ### Contributing a Plugin diff --git a/content/v3/quickstart.md b/content/v3/quickstart.md index 882a4f94..a94b13eb 100644 --- a/content/v3/quickstart.md +++ b/content/v3/quickstart.md @@ -34,7 +34,7 @@ Download the `spin` binary along with a starter set of templates and plugins usi -
$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash
+
$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash
 
Then move the `spin` binary somewhere in your path, so you can run it from anywhere. For example: @@ -53,7 +53,7 @@ Download the `spin` binary along with a starter set of templates and plugins usi -
$ curl -fsSL https://developer.fermyon.com/downloads/install.sh | bash
+
$ curl -fsSL https://spinframework.dev/downloads/install.sh | bash
 
Then move the `spin` binary somewhere in your path, so you can run it from anywhere. For example: @@ -229,9 +229,9 @@ You'll need the TinyGo compiler, as the standard Go compiler does not yet suppor ## Create Your First Application {{suh_cards}} -{{card_element "sample" "Checklist Sample App" "A checklist app that persists data in a key value store" "https://developer.fermyon.com/hub/preview/sample_checklist" "Typescript,Http,Kv" true }} -{{card_element "sample" "AI-assisted News Summarizer" "Read an RSS newsfeed and have AI summarize it for you" "https://developer.fermyon.com/hub/preview/sample_newsreader_ai" "Typescript,Javascript,Ai" true }} -{{card_element "template" "Zola SSG Template" "A template for using Zola framework to create a static webpage" "https://developer.fermyon.com/hub/preview/template_zola_ssg" "rust" true }} +{{card_element "sample" "Checklist Sample App" "A checklist app that persists data in a key value store" "/hub/preview/sample_checklist" "Typescript,Http,Kv" true }} +{{card_element "sample" "AI-assisted News Summarizer" "Read an RSS newsfeed and have AI summarize it for you" "/hub/preview/sample_newsreader_ai" "Typescript,Javascript,Ai" true }} +{{card_element "template" "Zola SSG Template" "A template for using Zola framework to create a static webpage" "/hub/preview/template_zola_ssg" "rust" true }} {{blockEnd}} Now you are ready to create your first Spin application: