update projets

This commit is contained in:
gpatruno
2026-04-20 00:32:21 +02:00
parent 2d941c1dbb
commit ba32064ae0
4 changed files with 49 additions and 4 deletions
+18
View File
@@ -221,3 +221,21 @@ export const PROJETS = [
linkLabel: 'Jellyfin — site officiel',
},
]
/** Projets Docker auto-hébergés : section « Ecosystem Docker » sur la page Projets. */
export const ECOSYSTEM_DOCKER_IDS = [
'jellyfin',
'authelia',
'seafile',
'gitea',
'immich',
'wiki-documentation',
]
const projetById = Object.fromEntries(PROJETS.map((p) => [p.id, p]))
export const PROJETS_ECOSYSTEM_DOCKER = ECOSYSTEM_DOCKER_IDS.map((id) => projetById[id]).filter(
Boolean,
)
export const PROJETS_MAIN = PROJETS.filter((p) => !ECOSYSTEM_DOCKER_IDS.includes(p.id))