Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jegj/ub-dev-playbook
Ansible playbook to install and configures most of the software I use on my Ubuntu Dev Env
https://github.com/jegj/ub-dev-playbook
Last synced: 2 months ago
JSON representation
Ansible playbook to install and configures most of the software I use on my Ubuntu Dev Env
- Host: GitHub
- URL: https://github.com/jegj/ub-dev-playbook
- Owner: jegj
- Created: 2021-11-23T01:55:27.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-07T10:42:00.000Z (3 months ago)
- Last Synced: 2024-10-12T10:11:47.566Z (3 months ago)
- Language: Lua
- Size: 91.8 KB
- Stars: 5
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ub-dev-playbook
[![CI](https://github.com/jegj/ub-dev-playbook/actions/workflows/ci.yml/badge.svg)](https://github.com/jegj/ub-dev-playbook/actions/workflows/ci.yml)
This playbook installs and configures my Ubuntu Dev Env
## Installation
1) [Install Ansible](https://docs.ansible.com/ansible/latest/installation_guide/index.html)
2) Clone or download this repo
3) Install dependecies ```ansible-galaxy install -r requirements.yml```
4) Run playbook
```sh
ansible-playbook main.yml --ask-become-pass --become-user=
```Supports check mode
```sh
ansible-playbook main.yml --ask-become-pass --become-user= --check
```## Default values
Check [config.default.yml](./config.default.yml)
## Override Default values
Create a config.yml file and setting the overrides in that file.
Follow [config.default.yml](./config.default.yml) for more information## Tags
- `sw` : All the software below
- `apt` : APT packages
- `deb` : Local deb packages
- `snap` : Snap packages
- `pip` : Pip packages
- `awscli`: AWS CLI
- `local` : Local settings + git alias + vim/neovim settings
- `alias` : Add shell alias
- `admin` : Admin task like souders
- `neovim` : Neovim installation
- `nvm` : nvm installation
- `npm` : npm global packages installation
- `zsh`: zsh shell installation & configuration
- `tpm`: Tmux plugin manager installation## Inspiration
[mac-dev-playbook](https://github.com/geerlingguy/mac-dev-playbook)
[craftzdog](https://github.com/craftzdog/dotfiles-public/)## Manual Settings
- [zsh](./files/zsh/README.md)
- [neovim](/files/nvim/README.md)
- [rust](https://www.rust-lang.org/tools/install)
- [go](https://go.dev/doc/install)
- [wezterm](/files/wezterm/wezterm.md)
- [httpie](/files/httpie/README.md)
## Lint
```sh
./lint.sh
```