No startup pitches, I am a DevOps principled environment bootstrapper.
- Work must finish by running one command. Mouse is not productivity.
- Does not install 10s of tools most of which can be run ad-hoc in a container.
- 95% consistent user experience both on macOS and the beloved Linux distros.
- There is only one way to manage programming languages and tool versions.
- Runs local open source LLMs for Copilot-like code completion in editor.
A few features:
- One character
.aliases
: The fastest are the commands one does not type. - Apps are Rust, Go and C for speed, and
n
ix-shells are for ad-hoc binaries. - macOS
docker
experience like it was with Docker Desktop but without cost. - Run
up
to upgrade every package manager but respect locked tool versions. - Quickly ask GPT in terminal (
a <question>
) or open a chat session (ai
).
Works on x86-64 and ARM:
- macOS Sequoia (15), Sonoma (14) and Ventura (13)
- Ubuntu Linux 24.04 LTS (Noble Numbat) and 22.04 LTS (Jammy Jellyfish)
- Debian Linux 12 (Bookworm) and 11 (Bullseye)
- Fedora Linux 38, 37 and 36
- CentOS Stream 9 and 8
- AlmaLinux 9 and 8
- Rocky Linux 9 and 8
- Oracle Linux 9 and 8
- openSUSE Leap 15.4
- Arch Linux (rolling; since 2022-07)
- Alpine Linux 3.19, 3.18 and 3.17
Minimum requirements are 4GB RAM and 12GB disk, on which it takes <30 minutes.
Already existing dotfiles are overridden without prompting. There is no uninstaller currently.
If in doubt, test drive in a virtual machine.
Installer requires only curl
available:
curl -fsSL https://raw.githubusercontent.com/raas-dev/configent/1.113.13/install.sh | sh
Things are installed primarily per-user, but to install system-wide requirements
(such as git
), sudo
password may be asked in the beginning.
The respective git tag from this repository is cloned in ~/configent
,
or main branch is pulled on top of the git working copy if it already exists.
User's configs (dotfiles, symlinks and directories) overridden are backed up in
~/configent/.backup
with same directory hierarchy as they located in $HOME
.
Script install.sh
is non-interactive and suitable for cloud-init when run as
user with passwordless sudo.
The defaults are what is most often used in software development in cloud. If you want to deviate from it, the fastest is to fork this repository, make changes and cURL your public fork.
GUI apps are not installed by install.sh
as a server is assumed, unless you
explicitly pass FLATPAKS=true
(Linux distros) or CASKS=true
(macOS) to the
script.
Alternatively, you can run bootstrap
in the git working copy (~/configent
)
to install GUI apps.
Add or remove GUI apps to your liking in bin/install_apps_flatpak
(Flatpak on Linux distros) or bin/install_apps_cask
(Homebrew Cask on macOS).
To use GUI apps on Linux distros, you have to install Xorg, display manager and window manager of your choice. See your distro's own instructions for that.
Script bootstrap
essentially handles the whole automated setup (dotfiles,
apps, editor) of the machine it is run in. These three respective scripts are
described further below.
Necessities (such as Zsh) are installed from the Linux distro's repo, or from Homebrew if it is runnable on the OS and the CPU architecture.
The script is non-interactive: Due to this, and though Zsh is preferred, it is
not set as the user's default shell. You may do it and get prompted, possibly
asked sudo
, by running bin/install_zsh
after bootstrap
has finished.
Symlinks are created in in the user's home directory for all the files in
dotfiles/
. Files or symlinks of the same name at $HOME
are overridden.
Starship, Topgrade, Neovim and htop configs are symlinked in ~/.config
,
which is a standard config search path on many operating systems.
Directory bin
in this repository is symlinked to ~/.local/configent/bin
,
taking 1st preference in PATH
. Directory etc
in this repository is
symlinked to ~/.config/configent
.
Restart the shell or run source ~/.bashrc
. Then on, you may simply reload
the configuration of the current shell (.bashrc
or .zshrc
) with r
and all
the scripts in bin/
are available by name from now on.
💡: Export your own environment variables in ~/.rclocal
. Git name and email
are automatically exported here if they were set in your previous .gitconfig
.
If you want to adjust high level tech stacks, modify this script.
What's installed by default:
- Command-line necessities and compile-time requirements
- GUI apps by Homebrew Cask (macOS) or Flatpak (Linux distros)
- Zsh plugin manager and plugins (Zsh from
brew
if Homebrew is available) - Rust, Go, Node.js, Python and .NET language runtimes and default packages
- Vim, Vundle (plugin manager for Vim) and Vim bundles (Vim plugins)
- Neovim with LazyVim (Neovim from
brew
if Homebrew is available) - Tmux plugins and config (tmux from
brew
if Homebrew is available) - Ollama is installed, started and configured to start on boot
- AWS and Azure development tools, script linters
- Terminess monospace font
Apt, yum (dnf), zypper, pacman and apk package managers are recognized and used
to install requirements from Linux distro's repository (requires sudo
rights).
Flatpaks (GUI apps) are always installed user-wide.
On macOS, Homebrew is used to install requirements and casks (GUI apps) user-wide.
Language runtimes and development tools are always installed user-wide by
asdf. Global versions are defined in ~/.tool-versions
.
Whenever possible, asdf plugins
are preferred over Homebrew.
With Homebrew on Linux (x86-64), system-wide installation (/home/linuxbrew
) is
preferred, but if it this not possible (no sudo
), it is installed user's home.
In both cases, Zsh, Neovim and tmux are installed using Homebrew on Linux,
as it likely has newer versions than the ones gotten from the distro's repo.
💡: See asdf documentation for locking project specific versions.
VSCodium is the default editor on Linux distros and VSCode is the default on macOS.
The script symlinks vscode/
to <os_specific_path>/User
. Existing User
directory is first backed up to ~/configent/.backup/<os_specific_path>/User
.
If editor is present, its extensions (vscode/extensions.list
) are installed
using the command-line tool of the editor.
To update the list after adding or removing extensions in VSCode/VSCodium,
run vscode/create_extensions_list
.
The script copies the VSCode/VSCodium Continue extension configuration files and installs Node.js packages used by the configuration.
You must export the API keys loaded by ~/.continue/config.ts
in ~/.rclocal
.
Set zsh
as the user's default shell:
install_zsh
If you prefer bash
instead:
install_bash
If Homebrew is available (Linux distros on x86-64, macOS on x86-64 or ARM), Zsh and Bash are installed from Homebrew and preferred over system-wide shells (respectively), as Homebrew likely has newer versions available.
Supported container runtimes:
- the original OCI compatible runtime was Docker (used by Docker Desktop)
- containerd is the industry-standard (CNCF) runtime in Kubernetes deployments
- third option is Podman, which is nearly Docker compatible daemonless runtime
These bin/
shims wrap the container CLIs to use those runtimes:
docker
: Runs Docker CLI, installing build and compose CLI plugins when usednerdctl
: Runs nerdctl (on containerd), which has build and compose built-inpodman
: Runs Podman CLI (on daemonless Podman), but lacks proper compose
See rootless containers as those are preferred.
Container runtimes base on Linux kernel features not present on macOS. Thus Lima is used for creating Linux VMs on QEMU.
The aforementioned shims create and start the necessary virtual machines: VM 'ubuntu' for Docker, VM 'debian' for ontainerd and VM 'fedora for Podman.
In addition, VM 'debian' has k3s for testing on Kubernetes.
See VM's startup message for exporting KUBECONFIG
to use it with kubectl
.
The following host directories are mounted read-write for VMs:
$HOME/dev
$HOME/Downloads
/tmp/lima
Alias d
is a shortcut for building Docker image in the current directory.
Dockerfile
is read if present, otherwise nixpacks
is used to detect the tech stack and build the image best-effort.
FROM
is safe before proceeding.
After the image is built, a new container is launched from it. If .env
file
is present in the current directory, its environment variables are set in the
container.
If you use PORT=8000 d
, the port given is mapped to the host and environment
variable PORT
is set inside the container. Note that this takes precedence
if PORT
is also defined in .env
file.
If d -d
or d --detached
is used, all arguments are passed to docker run
.
CMD defined in Dockerfile
is effective. ENTRYPOINT defined in Dockerfile
(or by nixpacks
) is effective, unless you override it in arguments.
If container was started as detached and successfully started up, docker logs
are followed. Sending ^C
exits the log view and does not stop the container.
If -d
or --detached
is not used, an interactive session is assumed and all arguments are passed to docker run
entrypoint /bin/sh -c
as commands, e.g.
d bash
starts Bash in the container. Exiting the shell stops the container.
Nix is not installed on the host, but alias nixd
starts
a container where nix
, nix-env
, nix-shell
, etc. are available.
The container image is built by etc/nix/Containerfile
.
The environment is created in the current directory and alias n
is used e.g.
n vim README.md
to run Vim in an isolated nix-shell
on containerd.
Package name(s, separated by forward slashes) are taken as the first argument. The packages are installed from channel unstable.
The binary is assumed named according to the first package. The rest of the
arguments are passed to the binary. If binary name is different from the
package name, put meta-package "shell" first, e.g. n shell/postgresql psql
.
You can expose PORT
on the host, e.g. PORT=8000 n python3 -m http.server
.
💡: Use n
for command-line tools not wanted permanently installed on the
host. See .aliases
for example ad-hoc tools such as container image scanners.
See dotfiles/.aliases
for vm4...
creating
Lima VMs to test on various Linux distros.
💡: See alias v
for starting, shelling into, stopping and deleting a VM.
VMs are provisioned by cloud-init
on boot by pulling and running install.sh
from this repository's main branch.
install.sh
and is only updated by release.sh
.
You may willingly live on the edge by explicitly passing GIT_REF
:
curl -fsSL https://raw.githubusercontent.com/raas-dev/configent/main/install.sh | GIT_REF=main sh
For development purposes, once the VM has been started, host's $HOME/configent
is mounted read-only in the VM. This enables testing most changes without first
committing and pushing to your fork.