Skip to content

Commit b91a10c

Browse files
authored
Merge pull request #3080 from vdice/chore/spinframework-dev-updates
chore(*): spinframework.dev docs URL updates
2 parents ae2edc9 + 47e0203 commit b91a10c

File tree

7 files changed

+23
-23
lines changed

7 files changed

+23
-23
lines changed

.github/ISSUE_TEMPLATE/report-bug-or-problem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ assignees: ''
99

1010
Do any of the following links help with your problem?
1111

12-
[Application Prerequisites](https://developer.fermyon.com/spin/build#setting-up-for-spin-build)
13-
[Troubleshooting - Rust](https://developer.fermyon.com/spin/rust-components#troubleshooting)
12+
[Application Prerequisites](https://spinframework.dev/build#setting-up-for-spin-build)
13+
[Troubleshooting - Rust](https://spinframework.dev/rust-components#troubleshooting)
1414
[Cloud FAQ](https://developer.fermyon.com/cloud/faq)
1515

1616
If you still see a bug or problem, please let us know:

crates/build/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ fn build_components(
6464

6565
if components_to_build.iter().all(|c| c.build.is_none()) {
6666
println!("None of the components have a build command.");
67-
println!("For information on specifying a build command, see https://developer.fermyon.com/spin/build#setting-up-for-spin-build.");
67+
println!("For information on specifying a build command, see https://spinframework.dev/build#setting-up-for-spin-build.");
6868
return Ok(());
6969
}
7070

crates/factor-sqlite/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ fn ensure_allowed_databases_are_configured(
110110
let prologue = vec![
111111
"One or more components use SQLite databases which are not defined.",
112112
"Check the spelling, or pass a runtime configuration file that defines these stores.",
113-
"See https://developer.fermyon.com/spin/dynamic-configuration#sqlite-storage-runtime-configuration",
113+
"See https://spinframework.dev/dynamic-configuration#sqlite-storage-runtime-configuration",
114114
"Details:",
115115
];
116116
let lines: Vec<_> = prologue

deploy/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The [Spin Docs](https://spin.fermyon.dev) website is deployed via the [deploy-website.yaml](../.github/workflows/deploy-website.yml) GitHub workflow.
44

5-
(Note: currently this website consists of redirects to the Spin Docs hosted on Fermyon's [Developer site](https://developer.fermyon.com/spin))
5+
(Note: currently this website consists of redirects to the Spin Docs hosted at [spinframework.dev](https://spinframework.dev))
66

77
## Auto Deploys
88

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
To build and run the Spin documentation website:
66

7-
1. Build Spin using the [contributing guide](https://developer.fermyon.com/spin/contributing).
7+
1. Build Spin using the [contributing guide](https://spinframework.dev/contributing-spin).
88

99
2. Run the website from this directory via Spin:
1010

docs/spin.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -135,63 +135,63 @@ environment = { DESTINATION = "https://developer.fermyon.com/downloads/install.s
135135

136136
[component.redirect-site-index]
137137
source = "modules/redirect.wasm"
138-
environment = { DESTINATION = "https://developer.fermyon.com/spin/index" }
138+
environment = { DESTINATION = "https://spinframework.dev/index" }
139139

140140
[component.redirect-architecture]
141141
source = "modules/redirect.wasm"
142-
environment = { DESTINATION = "https://developer.fermyon.com/spin/architecture" }
142+
environment = { DESTINATION = "https://spinframework.dev/architecture" }
143143

144144
[component.redirect-quickstart]
145145
source = "modules/redirect.wasm"
146-
environment = { DESTINATION = "https://developer.fermyon.com/spin/quickstart" }
146+
environment = { DESTINATION = "https://spinframework.dev/quickstart" }
147147

148148
[component.redirect-configuration]
149149
source = "modules/redirect.wasm"
150-
environment = { DESTINATION = "https://developer.fermyon.com/spin/configuration" }
150+
environment = { DESTINATION = "https://spinframework.dev/configuration" }
151151

152152
[component.redirect-developing]
153153
source = "modules/redirect.wasm"
154-
environment = { DESTINATION = "https://developer.fermyon.com/spin/developing" }
154+
environment = { DESTINATION = "https://spinframework.dev/developing" }
155155

156156
[component.redirect-rust-components]
157157
source = "modules/redirect.wasm"
158-
environment = { DESTINATION = "https://developer.fermyon.com/spin/rust-components" }
158+
environment = { DESTINATION = "https://spinframework.dev/rust-components" }
159159

160160
[component.redirect-go-components]
161161
source = "modules/redirect.wasm"
162-
environment = { DESTINATION = "https://developer.fermyon.com/spin/go-components" }
162+
environment = { DESTINATION = "https://spinframework.dev/go-components" }
163163

164164
[component.redirect-other-languages]
165165
source = "modules/redirect.wasm"
166-
environment = { DESTINATION = "https://developer.fermyon.com/spin/other-languages" }
166+
environment = { DESTINATION = "https://spinframework.dev/other-languages" }
167167

168168
[component.redirect-url-shortener]
169169
source = "modules/redirect.wasm"
170-
environment = { DESTINATION = "https://developer.fermyon.com/spin/url-shortener" }
170+
environment = { DESTINATION = "https://spinframework.dev/url-shortener" }
171171

172172
[component.redirect-http-trigger]
173173
source = "modules/redirect.wasm"
174-
environment = { DESTINATION = "https://developer.fermyon.com/spin/http-trigger" }
174+
environment = { DESTINATION = "https://spinframework.dev/http-trigger" }
175175

176176
[component.redirect-redis-trigger]
177177
source = "modules/redirect.wasm"
178-
environment = { DESTINATION = "https://developer.fermyon.com/spin/redis-trigger" }
178+
environment = { DESTINATION = "https://spinframework.dev/redis-trigger" }
179179

180180
[component.redirect-distributing-apps]
181181
source = "modules/redirect.wasm"
182-
environment = { DESTINATION = "https://developer.fermyon.com/spin/distributing-apps" }
182+
environment = { DESTINATION = "https://spinframework.dev/distributing-apps" }
183183

184184
[component.redirect-extending-and-embedding]
185185
source = "modules/redirect.wasm"
186-
environment = { DESTINATION = "https://developer.fermyon.com/spin/extending-and-embedding" }
186+
environment = { DESTINATION = "https://spinframework.dev/extending-and-embedding" }
187187

188188
[component.redirect-deploying-to-fermyon]
189189
source = "modules/redirect.wasm"
190-
environment = { DESTINATION = "https://developer.fermyon.com/spin/deploying-to-fermyon" }
190+
environment = { DESTINATION = "https://spinframework.dev/deploying-to-fermyon" }
191191

192192
[component.redirect-template-authoring]
193193
source = "modules/redirect.wasm"
194-
environment = { DESTINATION = "https://developer.fermyon.com/spin/template-authoring" }
194+
environment = { DESTINATION = "https://spinframework.dev/template-authoring" }
195195

196196
[component.redirect-sips-index]
197197
source = "modules/redirect.wasm"
@@ -223,4 +223,4 @@ environment = { DESTINATION = "https://github.com/fermyon/spin/blob/main/docs/co
223223

224224
[component.redirect-contributing]
225225
source = "modules/redirect.wasm"
226-
environment = { DESTINATION = "https://developer.fermyon.com/spin/contributing-spin" }
226+
environment = { DESTINATION = "https://spinframework.dev/contributing-spin" }

examples/vault-variable-test/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This example relates to the [Vault Application Variable Provider Example](https://developer.fermyon.com/spin/v2/dynamic-configuration#vault-application-variable-provider-example) documentation.
1+
This example relates to the [Vault Application Variable Provider Example](https://spinframework.dev/dynamic-configuration#vault-application-variable-provider-example) documentation.
22

33
You are best to visit the above link for more information, but for convenience, below is the steps taken to set up the Vault side of the application:
44

0 commit comments

Comments
 (0)