Compare commits
No commits in common. "bb816656b69e3eb91de99a2d4025c20aeeee24f7" and "3e91702198327b849a6083b4a5b27b726e36e1bc" have entirely different histories.
bb816656b6
...
3e91702198
2 changed files with 10 additions and 1 deletions
|
|
@ -22,6 +22,7 @@ const SERVICES_URLS: &[(&str, &str)] = &[
|
|||
("ffmpeg-downloader", "http://ffmpeg-gui:3000"),
|
||||
("cloudbeaver", "http://cloudbeaver:8978"),
|
||||
("forgejo", "http://forgejo:3000"),
|
||||
("affine", "http://affine:3010"),
|
||||
("hoppscotch", "http://hoppscotch:80")
|
||||
];
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ import {
|
|||
Server,
|
||||
Download,
|
||||
GitBranch,
|
||||
FileText,
|
||||
Zap,
|
||||
Monitor,
|
||||
FolderCode,
|
||||
|
|
@ -114,6 +115,13 @@ export const serviceCategories = [
|
|||
icon: Download,
|
||||
url: "https://ffmpeg.caadiq.co.kr",
|
||||
},
|
||||
{
|
||||
id: "affine",
|
||||
title: "AFFiNE",
|
||||
desc: "문서 및 노트 관리",
|
||||
icon: FileText,
|
||||
url: "https://affine.caadiq.co.kr",
|
||||
},
|
||||
],
|
||||
},
|
||||
];
|
||||
|
|
@ -123,7 +131,7 @@ export const serviceCategories = [
|
|||
* 백엔드 상태 체크 등에서 사용됩니다.
|
||||
*/
|
||||
export const serviceList = serviceCategories.flatMap(
|
||||
(category) => category.services,
|
||||
(category) => category.services
|
||||
);
|
||||
|
||||
// 각 카테고리 내 서비스들을 title 기준 알파벳순으로 자동 정렬
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue