diff --git a/docs/deployment/.github/vale/Vocab/Backstage/accept.txt b/docs/deployment/.github/vale/Vocab/Backstage/accept.txt new file mode 100644 index 0000000000..f67e55fd94 --- /dev/null +++ b/docs/deployment/.github/vale/Vocab/Backstage/accept.txt @@ -0,0 +1 @@ +Koyeb diff --git a/docs/deployment/koyeb.md b/docs/deployment/koyeb.md index 91e0be1d8f..2d5bd7b375 100644 --- a/docs/deployment/koyeb.md +++ b/docs/deployment/koyeb.md @@ -14,7 +14,7 @@ Before you begin, make sure you have a [Koyeb account](https://app.koyeb.com/) t First, install the [Koyeb CLI](https://www.koyeb.com/docs/quickstart/koyeb-cli) and follow the instructions in the [quickstart guide](https://www.koyeb.com/docs/quickstart/koyeb-cli) to login. -Then, configure your `app-config.yaml` with your `baseURL`: +Then, configure your `app-config.yaml` with your `baseUrl`: ```yaml app: @@ -24,8 +24,7 @@ app: backend: baseUrl: https://.koyeb.app listen: - port: - $env: PORT + port: ${PORT] # The $PORT environment variable is a feature of Koyeb # https://www.koyeb.com/docs/apps/services ``` diff --git a/microsite/sidebars.json b/microsite/sidebars.json index ec0f443ed5..5f55e19836 100644 --- a/microsite/sidebars.json +++ b/microsite/sidebars.json @@ -185,7 +185,9 @@ { "type": "category", "label": "Datadog", - "items": ["integrations/datadog-rum/installation"] + "items": [ + "integrations/datadog-rum/installation" + ] }, { "type": "category", @@ -217,17 +219,23 @@ { "type": "category", "label": "Gitea", - "items": ["integrations/gitea/locations"] + "items": [ + "integrations/gitea/locations" + ] }, { "type": "category", "label": "Google GCS", - "items": ["integrations/google-cloud-storage/locations"] + "items": [ + "integrations/google-cloud-storage/locations" + ] }, { "type": "category", "label": "LDAP", - "items": ["integrations/ldap/org"] + "items": [ + "integrations/ldap/org" + ] } ], "Plugins": [ @@ -255,7 +263,9 @@ { "type": "category", "label": "Testing", - "items": ["plugins/testing"] + "items": [ + "plugins/testing" + ] }, { "type": "category", @@ -328,6 +338,7 @@ "deployment/docker", "deployment/k8s", "deployment/heroku", + "deployment/koyeb", { "type": "category", "label": "Using Backstage Deploy (alpha)", @@ -344,12 +355,16 @@ { "type": "category", "label": "Guides", - "items": ["api/utility-apis"] + "items": [ + "api/utility-apis" + ] }, { "type": "category", "label": "API Reference", - "items": ["reference/index"] + "items": [ + "reference/index" + ] }, "api/deprecations" ], @@ -380,7 +395,9 @@ "architecture-decisions/adrs-adr012", "architecture-decisions/adrs-adr013" ], - "FAQ": ["FAQ"], + "FAQ": [ + "FAQ" + ], "Experimental Backend System": [ "backend-system/index", { @@ -415,9 +432,13 @@ { "type": "category", "label": "Core Services", - "items": ["backend-system/core-services/index"] + "items": [ + "backend-system/core-services/index" + ] } ], - "Accessibility": ["accessibility/index"] + "Accessibility": [ + "accessibility/index" + ] } } diff --git a/mkdocs.yml b/mkdocs.yml index 5544053263..23d519f66e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -175,6 +175,7 @@ nav: - Docker: 'deployment/docker.md' - Kubernetes: 'deployment/k8s.md' - Heroku: 'deployment/heroku.md' + - Koyeb: 'deployment/koyeb.md' - Designing for Backstage: - Design: 'dls/design.md' - Component Design Guidelines: 'dls/component-design-guidelines.md'