Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/declension/workstation-playbook
Ansible playbook for (Ubuntu) Python & Java & JS & Haskell & Rust dev & DevOps environment setup
https://github.com/declension/workstation-playbook
ansible haskell java kubernetes python3 rust-lang ubuntu
Last synced: 6 days ago
JSON representation
Ansible playbook for (Ubuntu) Python & Java & JS & Haskell & Rust dev & DevOps environment setup
- Host: GitHub
- URL: https://github.com/declension/workstation-playbook
- Owner: declension
- Created: 2017-09-08T06:46:30.000Z (over 7 years ago)
- Default Branch: main
- Last Pushed: 2024-01-24T18:03:57.000Z (about 1 year ago)
- Last Synced: 2024-12-05T16:18:57.438Z (2 months ago)
- Topics: ansible, haskell, java, kubernetes, python3, rust-lang, ubuntu
- Language: Dockerfile
- Homepage:
- Size: 78.1 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Workstation Setup
=================
[![CircleCI](https://circleci.com/gh/declension/workstation-playbook.svg?style=svg)](https://circleci.com/gh/declension/workstation-playbook)Assumptions
-----------* Ubuntu 21.10 (should mostly work on other releases though,
and Debian should only take a few tweaks)
* :new: ...or [Manjaro](https://manjaro.org/). Might work with Arch, too.
* You like the same tools as me...Setup
-----### Install Latest Ansible
#### Ubuntu
```bash
sudo apt-add-repository -y ppa:ansible/ansible
sudo apt install ansible
```#### Arch / Manjaro
```bash
sudo pacman -S ansible
```### Run playbook
Note that this installs the Galaxy roles,
but you can do this manually with:```bash
ansible-galaxy install -r requirements.yml
```Then:
#### Ubuntu
```bash
ansible-playbook -e "user=$USER" playbook.yml -K --skip-tags manjaro
```#### Manjaro
```bash
ansible-playbook -e "user=$USER" playbook.yml -K --skip-tags ubuntu
```### Just run the `configure` role
```bash
ansible-playbook -e "user=$USER" playbook.yml --tags configure
```Features
--------Using local and various excellent Ansible Galaxy roles, you get:
### Tools, Shells, Editors
* Zsh & oh-my-zsh
* [Alacritty](https://github.com/alacritty/alacritty)
* [Starship](https://starship.rs/guide/)
* Nice Tmux (& plugins), plus config### Communications
* Slack, Signal### Various programming languages:
* Python3 (+ Poetry)
* Latest OpenJDK
* Latest Node
* Latest Haskell (GHC + Stack),
* Latest Rust### DevOps / Systems Tooling
* [Nix](https://nixos.wiki/wiki/Nix), plus [Nix Flakes](https://nixos.wiki/wiki/Flakes)
* Docker CE
* Terraform
* Virtualbox
* Kubernetes
* `nmap`, `htop`, `jq`, `httpie` etc...and more (see playbook).