Skip to content

Commit ac96af0

Browse files
Merge remote-tracking branch 'origin/v4.x' into next
2 parents 0f3d5f7 + e8b93f1 commit ac96af0

File tree

22 files changed

+81
-31
lines changed

22 files changed

+81
-31
lines changed

.github/workflows/production-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Production Build
33
on:
44
push:
55
branches:
6-
- main
6+
- v4.x
77

88
env:
99
GITHUB_REGISTRY: ghcr.io
@@ -21,7 +21,7 @@ jobs:
2121
version: latest
2222
buildkitd-flags: --debug
2323

24-
- uses: actions/cache@v4.2.0
24+
- uses: actions/cache@v4
2525
with:
2626
path: |
2727
~/.bun/install/cache

.github/workflows/staging-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
version: latest
2222
buildkitd-flags: --debug
2323

24-
- uses: actions/cache@v4.2.0
24+
- uses: actions/cache@v4
2525
with:
2626
path: |
2727
~/.bun/install/cache

.github/workflows/update-trieve.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ concurrency:
77
on:
88
push:
99
branches:
10-
- main
10+
- v4.x
1111

1212
jobs:
1313
run:
@@ -16,8 +16,13 @@ jobs:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
1818

19+
- name: Setup Bun
20+
uses: oven-sh/setup-bun@v2
21+
with:
22+
bun-version: latest
23+
1924
- name: Install Trieve Vitepress Adapter
20-
run: npm install -g trieve-vitepress-adapter
25+
run: bun install -g trieve-vitepress-adapter
2126

2227
- name: Update Trieve Chunks
2328
env:

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright [2024] [Andras Bacsai]
189+
Copyright [2025] [Andras Bacsai]
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

bun.lockb

-404 Bytes
Binary file not shown.

docs/.vitepress/config.mts

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import yaml from 'vite-plugin-yaml'
33
import llmstxt from 'vitepress-plugin-llms'
44
import { defineConfig } from 'vitepress'
55
import { useSidebar } from 'vitepress-openapi'
6-
import spec from '../public/openapi.json' with { type: 'json' }
6+
import spec from './theme/openapi.json' with { type: 'json' }
77
import container from 'markdown-it-container'
88
import { bundledLanguages } from 'shiki'
99
import { join, dirname } from 'node:path'
@@ -50,7 +50,7 @@ export default defineConfig({
5050
['meta', { property: 'twitter:url', content: 'https://coolify.io/docs/' }],
5151
['meta', { property: 'twitter:image', content: 'https://coolcdn.b-cdn.net/assets/coolify/og-image-docs.png' }],
5252
['link', { rel: 'icon', href: '/docs/coolify-logo-transparent.png' }],
53-
['link', { rel: 'icon', type: 'image/x-icon', href: '/docs/public/favicon.ico' }],
53+
['link', { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }],
5454
['script', { defer: 'true', src: 'https://analytics.coollabs.io/js/script.tagged-events.js', 'data-domain': env.VITE_ANALYTICS_DOMAIN ?? 'coolify.io/docs' }],
5555
['script', { async: 'true', src: '/docs/trieve-user-script.js' }],
5656
],
@@ -84,7 +84,7 @@ export default defineConfig({
8484

8585
socialLinks: [
8686
{ icon: 'github', link: 'https://github.com/coollabsio/coolify' },
87-
{ icon: 'discord', link: 'https://discord.gg/coolify' },
87+
{ icon: 'discord', link: 'https://coollabs.io/discord' },
8888
{ icon: 'x', link: 'https://x.com/coolifyio' }
8989
],
9090

@@ -550,6 +550,7 @@ export default defineConfig({
550550
items: [
551551
{ text: 'Inaccessible ', link: '/troubleshoot/dashboard/dashboard-inaccessible' },
552552
{ text: 'Very Slow ', link: '/troubleshoot/dashboard/dashboard-slow-performance' },
553+
{ text: 'Disable 2FA Manually', link: '/troubleshoot/dashboard/disable-2fa-manually' },
553554
]
554555
},
555556
{

docs/.vitepress/theme/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import 'virtual:group-icons.css'
2323
import { enhanceAppWithTabs } from "vitepress-plugin-tabs/client";
2424

2525
// @ts-ignore
26-
import spec from "../../public/openapi.json" assert { type: "json" };
26+
import spec from "./openapi.json" assert { type: "json" };
2727

2828
// Import components
2929
import Card from "./components/Card.vue";

docs/api-reference/api/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ toc: false
99

1010
## Need help?
1111

12-
If you need help with the API please get in touch with us on [Discord](https://discord.gg/coolify).
12+
If you need help with the API please get in touch with us on [Discord](https://coollabs.io/discord).

docs/api-reference/api/operations/[operation].paths.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import spec from '../../../public/openapi.json' with { type: 'json' }
1+
import spec from '../../../.vitepress/theme/openapi.json' with { type: 'json' }
22

33
export default {
44
async paths() {

0 commit comments

Comments
 (0)