added link to download solvespace txz file from article.
[danix.xyz.git] / content / articles / git-setup-own-server.md
index a4b0ca0..5bd629b 100644 (file)
@@ -1,7 +1,7 @@
 ---
 title: "Git Setup Your Own Server"
 date: 2021-06-13T12:07:49+02:00
-type: post
+type: article
 author: "danix"
 excerpt: "I'll show you how to setup your own git server easily"
 featured_image: "uploads/2018/07/gitout.jpg"
@@ -27,8 +27,8 @@ In order to use git I needed a place online where to store my projects, and I th
 So I started planning what I wanted my git server to have. Here's a list:
 
   * **Security** - I decided to make it work only under ssh, that way only someone who has the key can clone or access the repository. I also added an unprivileged git user that has only access to very few commands, so even if somebody manages to access through ssh he'll find himrself with only very few options available.
-  * **Notifications** - my server already tells me a lot of what happens, so I wanted my git service to do the same. I implemented a mail service that notifies me every time a new repository is added or everytime there's a push to a repository.
-  * **Automation** - I wanted to have less steps possible between creation of the project and deployment to production. Now in two steps I can create a repository and clone it to my local computer, and when I'm done I just need to push my modifications and the code is deployed automatically.
+  * {{< strike >}}**Notifications** - my server already tells me a lot of what happens, so I wanted my git service to do the same. I implemented a mail service that notifies me every time a new repository is added or everytime there's a push to a repository.{{< /strike >}}
+  * **Automation** - I wanted to have less steps possible between creation of the project and deployment to production. Now in two steps I can create a repository and clone it to my local computer, and when I'm done I just need to push my modifications and the code is deployed {{< em >}}automatically{{< /em >}}.
   * **Visibility** - I haven't yet decided if I want my code to be visible, so I haven't even started thinking about this possibility.
 
 <!--more-->