update projets
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user