{"id":24085458,"url":"https://github.com/falleng0d/installscripts","last_synced_at":"2026-06-08T22:31:25.318Z","repository":{"id":224542485,"uuid":"763531613","full_name":"falleng0d/installscripts","owner":"falleng0d","description":"A comprehensive collection of automated installation scripts for setting up a modern development environment on Ubuntu/Linux systems. This project provides both local installation scripts and a Docker-based containerized environment for consistent, reproducible development setups.","archived":false,"fork":false,"pushed_at":"2025-07-06T14:36:37.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-07-06T15:38:43.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/falleng0d.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-02-26T13:25:32.000Z","updated_at":"2025-07-06T14:36:41.000Z","dependencies_parsed_at":"2024-04-23T12:36:15.384Z","dependency_job_id":"247658a7-f77c-4d90-874f-88f4125179cb","html_url":"https://github.com/falleng0d/installscripts","commit_stats":null,"previous_names":["falleng0d/installscripts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/falleng0d/installscripts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Finstallscripts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Finstallscripts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Finstallscripts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Finstallscripts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/falleng0d","download_url":"https://codeload.github.com/falleng0d/installscripts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/falleng0d%2Finstallscripts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34083848,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-08T02:00:07.615Z","response_time":111,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-10T01:42:59.193Z","updated_at":"2026-06-08T22:31:25.312Z","avatar_url":"https://github.com/falleng0d.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Install Scripts\n\nA comprehensive collection of automated installation scripts for setting up a modern development environment on Ubuntu/Linux systems. This project provides both local installation scripts and a Docker-based containerized environment for consistent, reproducible development setups.\n\n## 🚀 Features\n\n- **Automated Setup**: One-command installation of essential development tools\n- **Docker Support**: Containerized environment for consistent setups across different systems\n- **Modern Shell**: Fish shell with custom keybindings and Starship prompt\n- **Development Tools**: Node.js (via NVS), Python 3.12, Homebrew, and essential utilities\n\n## 📋 What Gets Installed\n\n### Base Packages\n\n- **Shell \u0026 Terminal**: Fish shell, Starship prompt\n- **Development Tools**: Git, Make, Build essentials, Micro editor\n- **Utilities**: curl, wget, jq, yq, tldr, net-tools, moreutils\n- **Package Managers**: Homebrew (Linuxbrew)\n\n### Programming Languages \u0026 Tools\n\n- **Node.js**: Version 18 (managed via NVS - Node Version Switcher)\n- **Python**: Version 3.12 with pip\n- **Development Tools**: Ansible, Poetry, fzf\n\n### Shell Configuration\n\n- Fish shell as default with custom keybindings:\n  - Right arrow: Auto-complete word\n  - Ctrl+Z: Undo\n  - Alt+Delete: Delete current history search\n- Starship prompt for both Bash and Fish\n- Persistent shell history\n\n## 🛠️ Prerequisites\n\n### For Local Installation\n\n- Ubuntu/Debian-based Linux distribution\n- `sudo` privileges\n- Internet connection\n\n### For Docker Installation\n\n- Docker installed and running\n- Make (optional, for using Makefile commands)\n\n## 📦 Installation Methods\n\n### Method 1: Local Installation\n\nClone the repository and run the installation script:\n\n```bash\ngit clone https://github.com/falleng0d/installscripts.git \u0026\u0026 cd installscripts \u0026\u0026 make install\n```\n\nOr manually:\n\n```bash\nchmod +x ./scripts/*.sh\ncd scripts \u0026\u0026 ./install.sh\n```\n\n### Method 2: Docker Environment\n\n#### Using Make (Recommended)\n\n```bash\n# Build the Docker image\nmake build\n\n# Run the container (Linux/macOS)\nmake run\n\n# Run the container (Windows PowerShell)\nmake run-powershell\n```\n\n#### Manual Docker Commands\n\n```bash\n# Build the image\ndocker build --tag install-essential .\n\n# Run the container\ndocker run --rm -it install-essential\n```\n\n## 🐳 Docker Environment Details\n\nThe Docker environment:\n- Based on Ubuntu latest\n- Creates an `ubuntu` user with sudo privileges\n- Mounts local directories for persistent shell history\n- Uses Fish shell as the entry point\n- Preserves your scripts and configuration between runs\n\n### Persistent Data\n\nThe Docker setup mounts the following for persistence:\n\n- `./scripts` → `/home/ubuntu/scripts` (your scripts)\n- `./home/.bash_history` → `/home/ubuntu/.bash_history` (bash history)\n- `./home/fish_history` → `/home/ubuntu/.local/share/fish/fish_history` (fish history)\n\n## 🔧 Script Breakdown\n\n### `install.sh`\nMain orchestrator script that runs both base and essential package installations.\n\n### `install-packages.sh`\nInstalls system packages via apt:\n- Adds Fish shell and Ansible PPAs\n- Installs base development tools and utilities\n- Downloads and installs yq (YAML processor)\n\n### `install-essential.sh`\nConfigures the development environment:\n- Sets Fish as default shell\n- Configures Fish keybindings\n- Installs Starship prompt\n- Sets up Homebrew\n- Installs Node.js via NVS\n- Configures Docker logging (if Docker is installed)\n\n### `install-essential-user.sh`\nUser-space installations via Homebrew:\n- Installs Homebrew (Linuxbrew)\n- Installs Python 3.12\n- Installs development tools (Ansible, Poetry, fzf)\n\n## 🎯 Usage\n\nAfter installation, you'll have:\n\n1. **Fish Shell**: Modern shell with syntax highlighting and autocompletion\n2. **Starship Prompt**: Beautiful, informative command prompt\n3. **Node.js 18**: Ready for JavaScript/TypeScript development\n4. **Python 3.12**: Latest Python with Poetry for dependency management\n5. **Development Tools**: All essential tools for modern development\n\n### Quick Start Commands\n\n```bash\n# Check installed versions\nnode --version\npython3 --version\nfish --version\n\n# Use Poetry for Python projects\npoetry new my-project\n\n# Use NVS for Node.js version management\nnvs list\nnvs use 18\n```\n\n## 🔍 Troubleshooting\n\n### Common Issues\n\n1. **Permission Errors**: Ensure you have sudo privileges\n2. **Network Issues**: Check internet connection for downloads\n3. **Docker Issues**: Ensure Docker is running and you have permissions\n\n### Logs\n\nDocker build logs are saved to `build.log` for debugging.\n\n## 🤝 Contributing\n\n1. Fork the repository\n2. Create a feature branch\n3. Make your changes\n4. Test with both local and Docker installations\n5. Submit a pull request\n\n## 🔗 Related Tools\n\n- [Fish Shell](https://fishshell.com/) - User-friendly command line shell\n- [Starship](https://starship.rs/) - Cross-shell prompt\n- [Homebrew](https://brew.sh/) - Package manager for macOS and Linux\n- [NVS](https://github.com/jasongin/nvs) - Node Version Switcher\n- [Poetry](https://python-poetry.org/) - Python dependency management\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Finstallscripts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffalleng0d%2Finstallscripts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffalleng0d%2Finstallscripts/lists"}