From c5e8d42173119e247afb62366c653f6d7f6d36dc Mon Sep 17 00:00:00 2001 From: Marco Gallegos Date: Thu, 15 Jan 2026 09:17:10 -0600 Subject: [PATCH] Revise README for Server Setup Assistant Updated README to reflect new server setup features and installation instructions. --- README.md | 24 +++++++++++++++++++++--- 1 file changed, 21 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index df13f34..7c87623 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,21 @@ -# server_setup -# server_setup -# server_setup +# 🚀 Server Setup Assistant (Ubuntu 24.04) + +Este script automatiza la configuración de servidores Ubuntu 24.04 (Standard o Minimized), transformando una instalación limpia en un entorno de producción y desarrollo potente con Zsh, Docker, Portainer y herramientas TUI. + +## ✨ Características Principales + +- **🖥️ Selección de Entorno:** Optimización para VPS o Servidor Físico (WOL). +- **🛠️ Core Stack:** Full Upgrade, Build-Essentials, Curl, Wget, Unzip. +- **🐳 Docker Ready:** Docker Engine + Compose + **Portainer** auto-desplegado. +- **🐚 Zsh Ultimate:** Oh My Zsh + Plugins + FZF + **Oh My Posh** (Tema Amro). +- **📦 Dev Tools:** Node.js LTS, Python3, Pipx, UV (Fast Python Manager). +- **⚡ TUI Power:** Neovim, Lazygit, Lazydocker y Btop. + +## 📥 Instalación Rápida (One-Liner) + +Copia y pega el siguiente comando en tu terminal. Este comando instala las dependencias necesarias (curl, whiptail, git) y ejecuta el asistente automáticamente: + +```bash +sudo apt update && sudo apt install -y curl whiptail unzip git && \ +curl -fsSL https://raw.githubusercontent.com/marcogll/server_setup/refs/heads/main/setup.sh -o setup.sh && \ +chmod +x setup.sh && sudo ./setup.sh