Skip to content

Commit a991666

Browse files
committed
Hardcode the new base url into links
1 parent 67d1f52 commit a991666

File tree

7 files changed

+8
-7
lines changed

7 files changed

+8
-7
lines changed

docs/astro.config.mjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ import starlightLinksValidator from "starlight-links-validator";
55

66
// https://astro.build/config
77
export default defineConfig({
8-
site: "https://purduercac.github.io/AnvilOps",
8+
site: "https://purduercac.github.io",
9+
base: "/AnvilOps",
910
integrations: [
1011
starlight({
1112
plugins: [starlightLinksValidator()],

docs/src/content/docs/guides/from-image.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,4 @@ Follow along at [`https://anvilops.rcac.purdue.edu`](https://anvilops.rcac.purdu
4343

4444
6. Add any environment variables your app requires. Environment variables can be marked as sensitive. Sensitive environment variables cannot be viewed after they are set, although they can be updated.
4545

46-
7. If your app requires storage that persists across restarts, configure volume mounts. Make sure to select an appropriate path and storage limit— these values cannot be changed later. See the [PostgreSQL database tutorial](/guides/deploying-a-database) for an example.
46+
7. If your app requires storage that persists across restarts, configure volume mounts. Make sure to select an appropriate path and storage limit— these values cannot be changed later. See the [PostgreSQL database tutorial](/AnvilOps/guides/deploying-a-database) for an example.

docs/src/content/docs/guides/getting-started.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ If your repository already contains a Dockerfile, select the `Dockerfile` option
3333

3434
If your repository does not contain a Dockerfile, we encourage you to try the `Railpack` builder, which detects common application types in order to automatically build them.
3535

36-
For more information on available parameters, see the [configuration guide](/reference/configuration).
36+
For more information on available parameters, see the [configuration guide](/AnvilOps/reference/configuration).
3737

3838
When you click Deploy, AnvilOps will build and run your application on the cluster.

docs/src/content/docs/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ hero:
88
file: ../../assets/anvilops.png
99
actions:
1010
- text: Get Started
11-
link: /guides/getting-started/
11+
link: /AnvilOps/guides/getting-started
1212
icon: right-arrow
1313
- text: Visit AnvilOps
1414
link: https://anvilops.rcac.purdue.edu

docs/src/content/docs/intro/what-is-anvilops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Kubernetes is extremely powerful, but its large feature set makes it quite compl
2222

2323
CI/CD stands for Continuous Integration and Continuous Delivery/Deployment. It's the name for a set of systems that enable software developers to release updates quickly by automating the build, testing, and deployment processes.
2424

25-
AnvilOps can automatically builds your application for you. Just select one of the builders: the Dockerfile builder, for customized builds, or [Railpack](/reference/railpack), which detects the application type and automatically builds it.
25+
AnvilOps can automatically builds your application for you. Just select one of the builders: the Dockerfile builder, for customized builds, or [Railpack](${import.meta.env.BASE_URL}/reference/railpack), which detects the application type and automatically builds it.
2626

2727
![ Build options on the AnvilOps app creation form. Two builders are available: Dockerfile and Railpack.](./what-is-anvilops/builders.png)
2828

docs/src/content/docs/reference/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ An app may be standalone, or it may belong to an app group. Within the cluster,
2222

2323
## App Group
2424

25-
[Apps](/reference/concepts#app) that belong to the same Organization can be organized into App Groups. This is useful for applications that are built as many [microservices](https://aws.amazon.com/microservices/), or many independent components that communicate to handle requests from users. For instance, a web app and a database. AnvilOps ensures that apps in the same App Group can communicate within the cluster.
25+
[Apps](/AnvilOps/reference/concepts#app) that belong to the same Organization can be organized into App Groups. This is useful for applications that are built as many [microservices](https://aws.amazon.com/microservices/), or many independent components that communicate to handle requests from users. For instance, a web app and a database. AnvilOps ensures that apps in the same App Group can communicate within the cluster.
2626

2727
## Deployment
2828

docs/src/content/docs/reference/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ The module to use to build your repository into a container image, from the spec
8080

8181
Note that the Dockerfile path is relative to the root directory that you specified earlier. For example, if your root directory is `./app` and your Dockerfile is at `./app/Dockerfile`, then your Dockerfile path would just be `Dockerfile` or `./Dockerfile`.
8282

83-
**If you do not have a Dockerfile**, try the **Railpack builder**. It will attempt to detect the language and framework you are using to automatically build it. See the [Railpack reference](/reference/railpack) for a list of supported technologies.
83+
**If you do not have a Dockerfile**, try the **Railpack builder**. It will attempt to detect the language and framework you are using to automatically build it. See the [Railpack reference](/AnvilOps/reference/railpack) for a list of supported technologies.
8484

8585
## Public URL <span style="color: #cfb991">\*</span>
8686

0 commit comments

Comments
 (0)