Files
peakskills/public/data/skills/devops.json
Julien Froidefond fe63f9592a Enhance skill evaluation UI with category icons and URL state management
- Added category icons to the skill evaluation components for better visual representation.
- Implemented URL parameter handling in SkillEvaluation to maintain selected category state across navigation.
- Improved the HomePage layout with expandable skill categories and enhanced user interaction.
- Updated skill data files to include icon properties for each category.
2025-08-20 15:52:59 +02:00

67 lines
1.8 KiB
JSON

{
"category": "DevOps",
"icon": "settings",
"skills": [
{
"id": "docker",
"name": "Docker",
"description": "Plateforme de conteneurisation pour développer, expédier et exécuter des applications",
"links": [
"https://www.docker.com/",
"https://docs.docker.com/",
"https://github.com/docker/docker-ce"
]
},
{
"id": "kubernetes",
"name": "Kubernetes",
"description": "Système d'orchestration de conteneurs open source",
"links": [
"https://kubernetes.io/",
"https://kubernetes.io/docs/",
"https://github.com/kubernetes/kubernetes"
]
},
{
"id": "aws",
"name": "Amazon Web Services",
"description": "Plateforme de services cloud d'Amazon",
"links": [
"https://aws.amazon.com/",
"https://docs.aws.amazon.com/",
"https://github.com/aws"
]
},
{
"id": "terraform",
"name": "Terraform",
"description": "Outil d'infrastructure as code pour construire, changer et versionner l'infrastructure",
"links": [
"https://www.terraform.io/",
"https://learn.hashicorp.com/terraform",
"https://github.com/hashicorp/terraform"
]
},
{
"id": "jenkins",
"name": "Jenkins",
"description": "Serveur d'automatisation open source pour CI/CD",
"links": [
"https://www.jenkins.io/",
"https://www.jenkins.io/doc/",
"https://github.com/jenkinsci/jenkins"
]
},
{
"id": "githubactions",
"name": "GitHub Actions",
"description": "Plateforme CI/CD intégrée à GitHub",
"links": [
"https://github.com/features/actions",
"https://docs.github.com/en/actions",
"https://github.com/actions"
]
}
]
}