{"id":15090192,"url":"https://github.com/toshahriar/vagrant-vms","last_synced_at":"2026-02-17T00:33:39.913Z","repository":{"id":253726656,"uuid":"844117296","full_name":"toshahriar/vagrant-vms","owner":"toshahriar","description":"A Vagrant project with automated scripts for streamlined VM setup and management.","archived":false,"fork":false,"pushed_at":"2024-08-19T06:20:28.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-10T12:23:02.803Z","etag":null,"topics":["developer-experience","developer-tools","development","environment-variables","operating-system","operating-systems","os","shell","shell-scripts","testing","ubuntu","ubuntu-server","vagrant","vagrant-box","vagrant-boxes","vagrant-machine","vagrantfile"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/toshahriar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-08-18T12:44:27.000Z","updated_at":"2024-08-19T06:20:31.000Z","dependencies_parsed_at":"2024-08-19T07:37:32.964Z","dependency_job_id":null,"html_url":"https://github.com/toshahriar/vagrant-vms","commit_stats":null,"previous_names":["toshahriar/vagrant-personal-vms","toshahriar/vagrant-vms"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/toshahriar/vagrant-vms","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toshahriar%2Fvagrant-vms","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toshahriar%2Fvagrant-vms/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toshahriar%2Fvagrant-vms/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toshahriar%2Fvagrant-vms/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toshahriar","download_url":"https://codeload.github.com/toshahriar/vagrant-vms/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toshahriar%2Fvagrant-vms/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29526862,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-16T21:45:09.491Z","status":"ssl_error","status_checked_at":"2026-02-16T21:44:58.452Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["developer-experience","developer-tools","development","environment-variables","operating-system","operating-systems","os","shell","shell-scripts","testing","ubuntu","ubuntu-server","vagrant","vagrant-box","vagrant-boxes","vagrant-machine","vagrantfile"],"created_at":"2024-09-25T09:23:13.416Z","updated_at":"2026-02-17T00:33:39.881Z","avatar_url":"https://github.com/toshahriar.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vagrant VMs\n\n## Overview\n\nThis project uses Vagrant to simplify the management of virtual machines. It provides a set of configuration files and provisioning scripts designed to automate the setup and customization of multiple VMs, streamlining the process of deploying and managing virtual environments. The included scripts handle various aspects of VM configuration, ensuring a consistent and efficient setup for development and testing purposes.\n\n## File Structure\n\n- `scripts/`: Directory containing provisioning scripts.\n- `.env.example`: Example environment configuration file.\n- `LICENSE`: License file for the project.\n- `README.md`: This file.\n- `Vagrantfile`: Configuration file for Vagrant to set up and manage VMs.\n\n## Setup\n\n1. **Clone the Repository:**\n\n   ```bash\n   git clone \u003crepository-url\u003e\n   cd \u003crepository-directory\u003e\n   ```\n\n2. **Prepare Environment Configuration:**\n\n   Copy `.env.example` to `.env` and update the values according to your setup:\n\n   ```bash\n   cp .env.example .env\n   ```\n\n   Edit `.env` to configure VM settings such as IP addresses, memory, CPUs, etc.\n\n\n3. **Install Vagrant and VirtualBox:**\n\n   Ensure that you have Vagrant and VirtualBox installed on your system. You can download them from:\n\n    - [Vagrant](https://www.vagrantup.com/)\n    - [VirtualBox](https://www.virtualbox.org/)\n\n\n4. **Initialize and Start VMs:**\n\n   Run the following command to start and provision the VMs:\n\n   ```bash\n   vagrant up\n   ```\n\n5. **Provisioning:**\n\n   The `scripts/provision.sh` script is used to set up the VMs as specified in the Vagrantfile. This script is executed during the provisioning phase.\n\n## Commands\n\n- **Start and Provision VMs:**\n\n  ```bash\n  vagrant up\n  ```\n\n- **Reload VMs:**\n\n  Reloads the VMs, applying any configuration changes from the Vagrantfile without destroying them:\n\n  ```bash\n  vagrant reload\n  ```\n\n- **Provision VMs:**\n\n  Runs provisioning scripts on existing VMs, applying any updates or changes:\n\n  ```bash\n  vagrant provision\n  ```\n\n- **Restart and Provision VMs:**\n\n  Restarts the VMs and applies provisioning scripts:\n\n  ```bash\n  vagrant up --provision\n  ```\n\n- **Destroy VMs:**\n\n  Stops and removes the VMs, deleting all data:\n\n  ```bash\n  vagrant destroy\n  ```\n\n- **Force Destroy VMs:**\n\n  Forces the removal of VMs, bypassing any confirmation prompts:\n\n  ```bash\n  vagrant destroy --force\n  ```\n\n## Contributing\n\nIf you want to contribute to this project, please fork the repository and create a pull request with your changes. Make sure to follow the project's coding standards and guidelines.\n\n## Contact\n\nFor any questions or support, please contact [shahriar.talk@gmail.com](mailto:shahriar.talk@gmail.com).\n\n## License\n\nThis project is licensed under the following terms:\n\n```\nMIT License\n\nCopyright (c) 2024 Shahriar Shabbir\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoshahriar%2Fvagrant-vms","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoshahriar%2Fvagrant-vms","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoshahriar%2Fvagrant-vms/lists"}