Initial commit

This commit is contained in:
2025-09-03 19:19:15 +02:00
commit 0bafe17c05
11 changed files with 442 additions and 0 deletions

32
README.adoc Normal file
View File

@@ -0,0 +1,32 @@
= My dev-machine setup
:source-highlighter: rouge
This ansible-playbook will setup my development machines and prepare them for work.
== Prepararation
The setup is a bit different for linux and macos, since I can use the local package-manager on linux.
Though on macos I need to install `brew` first!
In both cases we need to install `ansible` and `git` though.
.Prepararation on Debian and Ubuntu
[source,bash]
----
sudo apt install ansible git
----
.Prepararation on macos
[source,bash]
----
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
brew install ansible git
----
== Setup
The setup is simple:
[source,bash]
----
git clone git@gitea.nehrke.info:nemoinho/dev-machine.git ~/Development/dev-machine
cd $_
ansible-playbook main.yml
----