openboot
@openboot / default

Default

My default configuration

$ openboot install openboot/default
0
Apps
0
CLI
24
Installs

🔧 Configuration

🐚 Shell Setup
Oh My Zsh Installed
Theme agnoster
Plugins (2)
gitz
🔀 Git Configuration
user.name OpenBoot
user.email hello@openboot.dev
init.defaultBranch main
pull.rebase false
Custom Installation Script
custom-script.sh
#!/bin/bash
set -o pipefail

has() { command -v "$1" >/dev/null 2>&1; }
log() { printf "[openboot] %s\n" "$1"; }

log "Configuring default development environment"

has git && log "Git ready"
has node && log "Node ready"
has python3 && log "Python ready"
has docker && log "Docker ready"

mkdir -p "$HOME/projects" "$HOME/.config/openboot"

log "Next steps"
log "1) openboot snapshot"
log "2) create your first project repo"
log "3) share your profile config"

Create Your Own Configuration

Build and share your perfect dev environment in minutes

Get Started