From cd5e7c69ea058a0e7f72415c929280fcd79fce9b Mon Sep 17 00:00:00 2001 From: Gitea Actions Date: Fri, 23 May 2025 08:19:28 +0000 Subject: [PATCH] Auto-update blog content from Obsidian: 2025-05-23 08:19:28 --- content/post/blog-deployment.fr.md | 16 ++++++++-------- content/post/blog-deployment.md | 12 ++++++------ 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/content/post/blog-deployment.fr.md b/content/post/blog-deployment.fr.md index 0659c06..63bd013 100644 --- a/content/post/blog-deployment.fr.md +++ b/content/post/blog-deployment.fr.md @@ -9,23 +9,23 @@ tags: categories: - homelab --- -## 💡 Introduction +## 💡 Intro -I always wanted to share my own experiences to give others ideas or help them on their projects. +J'ai toujours voulu partager mes expĂ©riences pour donner des idĂ©es aux autres ou les aider dans leurs projets. -I'm constantly tinkering in my homelab, trying new tools and workflows. Instead of keeping all these experiments in private notes, I decided to create a blog where I can document and publish them easily. +Je suis constamment en train de bidouiller dans mon lab, testant de nouveaux outils et workflows. PlutĂŽt que de conserver toutes ces expĂ©riences dans des notes privĂ©es, j'ai dĂ©cidĂ© de crĂ©er un blog oĂč je peux les documenter et les publier facilement. -I wanted the entire process to be automated, self-hosted, and integrated into the tools I already use. +Je souhaitais que l'ensemble du processus soit automatisĂ©, self-hosted et intĂ©grĂ© aux outils que j'utilise dĂ©jĂ . --- -## 🔧 Tools +## 🔧 Outils ### Obsidian -Before I was using Notion, but some months ago I switched to [Obsidian](https://obsidian.md/). It's a markdown-based note-taking app that stores everything locally, which gives me more flexibility and control. +J'utilisais auparavant [Notion](https://www.notion.com), mais il y a quelques mois, je suis passĂ© Ă  [Obsidian](https://obsidian.md/). C'est une application de prise de notes basĂ©e sur Markdown qui stocke tout localement, ce qui me donne plus de flexibilitĂ© et de contrĂŽle. -To sync my notes between devices, I use the [Obsidian Git plugin](https://github.com/denolehov/obsidian-git), which commits changes to a Git repository hosted on my self-hosted Gitea instance. +Pour synchroniser mes notes entre mes appareils, j'utilise le [plugin Git Obsidian](https://github.com/denolehov/obsidian-git), qui enregistre les modifications dans un dĂ©pĂŽt Git hĂ©bergĂ© sur mon instance Gitea self-hosted. -This setup not only allows for versioned backups of all my notes but also opens the door to automation. +Cette configuration permet non seulement de sauvegarder toutes mes notes avec leurs versions, mais aussi ouvre la porte Ă  l'automatisation. ### Gitea diff --git a/content/post/blog-deployment.md b/content/post/blog-deployment.md index b205996..2597f71 100644 --- a/content/post/blog-deployment.md +++ b/content/post/blog-deployment.md @@ -9,7 +9,7 @@ tags: categories: - homelab --- -## 💡 Introduction +## 💡 Intro I always wanted to share my own experiences to give others ideas or help them on their projects. @@ -21,7 +21,7 @@ I wanted the entire process to be automated, self-hosted, and integrated into th ## 🔧 Tools ### Obsidian -Before I was using Notion, but some months ago I switched to [Obsidian](https://obsidian.md/). It's a markdown-based note-taking app that stores everything locally, which gives me more flexibility and control. +Before I was using [Notion](https://www.notion.com), but some months ago I switched to [Obsidian](https://obsidian.md/). It's a markdown-based note-taking app that stores everything locally, which gives me more flexibility and control. To sync my notes between devices, I use the [Obsidian Git plugin](https://github.com/denolehov/obsidian-git), which commits changes to a Git repository hosted on my self-hosted Gitea instance. @@ -29,15 +29,15 @@ This setup not only allows for versioned backups of all my notes but also opens ### Gitea -[Gitea](https://gitea.io/) is a self-hosted Git service similar to GitHub, but lightweight and easy to maintain. I host my personal repositories there, including my Obsidian vault and my blog. +[Gitea](https://gitea.io/) est un service Git self-hosted similaire Ă  GitHub, mais lĂ©ger et facile Ă  maintenir. J'y hĂ©berge mes dĂ©pĂŽts personnels, notamment mon vault Obsidian et mon blog. -Gitea now supports [Gitea Actions](https://docs.gitea.com/usage/actions/overview), a CI/CD pipeline mechanism compatible with GitHub Actions syntax. +Gitea prend dĂ©sormais en charge [Gitea Actions](https://docs.gitea.com/usage/actions/overview), un mĂ©canisme de pipeline CI/CD compatible avec la syntaxe GitHub Actions. -To run those workflows, I installed a [Gitea runner](https://gitea.com/gitea/act_runner) on my server, allowing me to create an automated workflow triggered when I update content in my notes, which then builds and deploys my blog. +Pour exĂ©cuter ces workflows, j'ai installĂ© un [Gitea runner](https://gitea.com/gitea/act_runner) sur mon serveur, ce qui me permet de crĂ©er un workflow automatisĂ© dĂ©clenchĂ© lorsque je mets Ă  jour le contenu de mes notes, puis de reconstruire et dĂ©ployer mon blog. ### Hugo -[Hugo](https://gohugo.io/) is a fast and flexible static site generator written in Go. It’s perfect for generating content from Markdown files. Hugo is highly customizable, supports themes, and can generate a complete website in seconds. It’s ideal for a blog based on Obsidian notes, and it works beautifully in CI/CD pipelines due to its speed and simplicity. +[Hugo](https://gohugo.io/) est un gĂ©nĂ©rateur de sites statiques rapide et flexible, Ă©crit en Go. Il est idĂ©al pour gĂ©nĂ©rer du contenu Ă  partir de fichiers Markdown. Hugo est hautement personnalisable, prend en charge les thĂšmes et peut gĂ©nĂ©rer un site web complet en quelques secondes. Il est idĂ©al pour un blog basĂ© sur des notes Obsidian et fonctionne parfaitement dans les pipelines CI/CD grĂące Ă  sa rapiditĂ© et sa simplicitĂ©. --- ## 🔁 Workflow