From 6391e1d85efbd1f52f87140603e5698db9efdbd2 Mon Sep 17 00:00:00 2001 From: Yanis Legrand Date: Tue, 9 Jan 2024 18:09:06 +0100 Subject: [PATCH] good practices --- src/pages/posts/good-practices.mdx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/pages/posts/good-practices.mdx diff --git a/src/pages/posts/good-practices.mdx b/src/pages/posts/good-practices.mdx new file mode 100644 index 0000000..998390f --- /dev/null +++ b/src/pages/posts/good-practices.mdx @@ -0,0 +1,20 @@ +--- +layout: ../../layouts/MarkdownPostLayout.astro +title: Good practices +author: Yanis Legrand +description: "A litle documentation for deploy in preprod!" +image: + url: "https://docs.astro.build/default-og-image.png" + alt: "The word “astro” against an illustration of planets and stars." +pubDate: 2023-11-02 +tags: ["documentation", "good practices", "list"] +draft: true +--- +export const link = "generic-link" + +# Good practices to respect + + - Don't do API call in a loop + - Always start a new branch from Master + - Check if any new jobs have been pushed into Master, and merge master into the current branch + - Observe, plan, act \ No newline at end of file