{"id":25194167,"url":"https://github.com/fernand3z/dev-toolbox","last_synced_at":"2025-04-04T14:22:40.358Z","repository":{"id":275481403,"uuid":"926207043","full_name":"fernand3z/dev-toolbox","owner":"fernand3z","description":"This repository contains a multi-platform installer to help set up your development environment on Linux, macOS, and Windows. It installs a collection of terminal enhancements and development tools in a customizable way.","archived":false,"fork":false,"pushed_at":"2025-02-02T19:59:24.000Z","size":9,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-28T20:59:41.513Z","etag":null,"topics":["developer-tools","installer","script","shell-script"],"latest_commit_sha":null,"homepage":"https://github.com/fernand3z/dev-toolbox","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/fernand3z.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}},"created_at":"2025-02-02T19:54:27.000Z","updated_at":"2025-02-08T21:44:37.000Z","dependencies_parsed_at":"2025-02-02T20:37:47.284Z","dependency_job_id":null,"html_url":"https://github.com/fernand3z/dev-toolbox","commit_stats":null,"previous_names":["fernand3z/dev-toolbox"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernand3z%2Fdev-toolbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernand3z%2Fdev-toolbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernand3z%2Fdev-toolbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/fernand3z%2Fdev-toolbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/fernand3z","download_url":"https://codeload.github.com/fernand3z/dev-toolbox/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247190746,"owners_count":20898814,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["developer-tools","installer","script","shell-script"],"created_at":"2025-02-09T23:52:46.845Z","updated_at":"2025-04-04T14:22:40.334Z","avatar_url":"https://github.com/fernand3z.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Multi-Platform Development Tools Installer\n\nThis repository contains a multi-platform installer to help set up your development environment on **Linux**, **macOS**, and **Windows**. It installs a collection of terminal enhancements and development tools in a customizable way.\n\n## Features\n\n### Terminal Enhancements\n- **zsh**\n- **oh-my-zsh** with plugins (syntax highlighting and autosuggestions)\n- **Starship Prompt** (with Nerd Font preset)\n- **fzf**\n- **zoxide** (initialized in `.zshrc` with `--cmd cd`)\n\n### Development Environment Tools\n- **nvm** and **Node.js**\n- **Python** with **pip**\n- **Docker**\n- **Git**\n- **Visual Studio Code**\n- **PyCharm Community Edition**\n\n### Customizable Installation\nChoose to install all tools or select by categories:\n1. Terminal Enhancements  \n2. Development Environment Tools  \n\n### Platform-Specific Installers\n- **Linux:** Uses `apt` (Debian/Ubuntu based) and requests `sudo` privileges upfront.\n- **macOS:** Uses [Homebrew](https://brew.sh/).\n- **Windows:** Uses [winget](https://github.com/microsoft/winget-cli) and includes a batch file to request admin privileges when double-clicked.\n\n## File Structure\n\n```plaintext\nproject/\n├── install.sh\n├── linux/\n│   └── install_linux.sh\n├── macos/\n│   └── install_macos.sh\n└── windows/\n    ├── install_windows.sh\n    └── run_install_windows.bat\n```\n\n### File Descriptions\n- **install.sh** - The master installer script. It sets executable permissions for all sub-scripts and prompts you to select your operating system, then launches the appropriate installer.\n- **linux/install_linux.sh** - Installs development tools on Linux. It asks for `sudo` privileges at the beginning and maintains them during execution.\n- **macos/install_macos.sh** - Installs development tools on macOS using Homebrew.\n- **windows/install_windows.sh** - Installs development tools on Windows using `winget`. Intended to be run in a Bash environment (e.g., Git Bash).\n- **windows/run_install_windows.bat** - A batch file wrapper that requests administrative privileges via UAC and then launches the Windows Bash installer.\n\n## Prerequisites\n\n### Linux\n- A Debian/Ubuntu-based system (or similar) is assumed.\n- `sudo` privileges are required.\n- Internet connectivity for downloading packages.\n\n### macOS\n- [Homebrew](https://brew.sh/) must be installed.\n- Internet connectivity for downloading packages.\n\n### Windows\n- A Bash environment (e.g., [Git Bash](https://gitforwindows.org/)) must be available.\n- [winget](https://github.com/microsoft/winget-cli) must be installed.\n- To run the installer with admin privileges, double-click `windows/run_install_windows.bat`.\n\n## Usage\n\n### Clone the Repository\n\n```sh\ngit clone https://github.com/yourusername/your-repo.git\ncd your-repo\n```\n\n### Run the Master Installer\n\nThe master installer (`install.sh`) automatically sets executable permissions for all sub-scripts. Before running, make it executable on macOS and Linux:\n\n```sh\nchmod +x install.sh\n./install.sh\n```\n\n### Installation Options\nYou will be prompted to select your operating system and choose an installation option:\n- **Install All** - Installs both terminal enhancements and development environment tools.\n- **Customize Installation** - Allows you to choose one or both categories.\n\n### Windows Users\nInstead of running the Bash script directly, you can double-click the batch file:\n\n1. Double-click `windows/run_install_windows.bat`.\n2. This file will request administrative privileges and then launch the Windows installer.\n\n## Customization\n\nThe installer scripts are organized by categories. When prompted, you can choose to install:\n- **Category 1:** Terminal Enhancements\n- **Category 2:** Development Environment Tools\n\nFeel free to modify the scripts to add, remove, or adjust tools according to your personal setup.\n\n## License\n\nThis project is licensed under the MIT License.\n\n## Contributing\n\nContributions are welcome! Please open an issue or submit a pull request with any improvements or bug fixes.\n\n## Disclaimer\n\nThese scripts are provided as examples. They may need adjustments to work correctly on your specific system or with different versions of the tools.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffernand3z%2Fdev-toolbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffernand3z%2Fdev-toolbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffernand3z%2Fdev-toolbox/lists"}