{"id":13753103,"url":"https://github.com/beetboxvm/beetbox","last_synced_at":"2025-10-01T09:30:50.963Z","repository":{"id":62492810,"uuid":"47082500","full_name":"beetboxvm/beetbox","owner":"beetboxvm","description":"Pre-provisioned L*MP stack","archived":true,"fork":false,"pushed_at":"2019-08-16T23:39:44.000Z","size":606,"stargazers_count":92,"open_issues_count":14,"forks_count":19,"subscribers_count":19,"default_branch":"master","last_synced_at":"2024-12-15T03:43:31.594Z","etag":null,"topics":["ansible","backdrop","cakephp","cms","composer","composer-plugin","development","docker","drupal","environment","kohana","local","modx","packer","silverstripe","symfony","vagrant","virtualbox","vm","wordpress"],"latest_commit_sha":null,"homepage":"http://beetbox.rtfd.org","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/beetboxvm.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-11-29T22:13:20.000Z","updated_at":"2024-09-02T10:45:48.000Z","dependencies_parsed_at":"2022-11-02T11:30:37.724Z","dependency_job_id":null,"html_url":"https://github.com/beetboxvm/beetbox","commit_stats":null,"previous_names":[],"tags_count":61,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beetboxvm%2Fbeetbox","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beetboxvm%2Fbeetbox/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beetboxvm%2Fbeetbox/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beetboxvm%2Fbeetbox/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beetboxvm","download_url":"https://codeload.github.com/beetboxvm/beetbox/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234852337,"owners_count":18896852,"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":["ansible","backdrop","cakephp","cms","composer","composer-plugin","development","docker","drupal","environment","kohana","local","modx","packer","silverstripe","symfony","vagrant","virtualbox","vm","wordpress"],"created_at":"2024-08-03T09:01:16.237Z","updated_at":"2025-10-01T09:30:50.622Z","avatar_url":"https://github.com/beetboxvm.png","language":"Shell","readme":"# Beetbox - a pre-provisioned L*MP stack\n\nA VM for local L*MP development, built with Packer, Vagrant + Ansible\n\nBeetbox is essentially a pre-provisioned version of [Drupal VM](http://www.drupalvm.com/) mainly to speed up initial virtual machine build time, but also to reduce the size of each VM by leveraging [linked clones](https://www.hashicorp.com/blog/vagrant-1-8.html).\n\nWhilst it contains a set of default feature configuration, it is extremely extensible and almost anything can be overridden/extended with a simple YAML config file.\n\nIt is designed to have an instance (VM) per project and be integrated into a VCS like git, so that configuration can be easily shared within a team and a setup of a new project should be as simple as `git clone ...; vagrant up`.\n\nThis particular project contains the plumbing to manage the automated build of the pre-provisioned Vagrant base box, so almost all functionality is provided by ansible roles external to this project.\n\n[![Circle CI](https://circleci.com/gh/beetboxvm/beetbox.svg?style=shield)](https://circleci.com/gh/beetboxvm/beetbox) [![Documentation Status](https://readthedocs.org/projects/beetbox/badge/?version=stable)](http://beetbox.readthedocs.org/en/stable/?badge=stable)\n[![Latest Stable Version](https://poser.pugx.org/beet/box/v/stable)](https://packagist.org/packages/beet/box)\n[![Total Downloads](https://poser.pugx.org/beet/box/downloads)](https://packagist.org/packages/beet/box)\n[![License](https://poser.pugx.org/beet/box/license)](https://packagist.org/packages/beet/box)\n[![Docker](https://img.shields.io/docker/build/beet/box.svg)](https://hub.docker.com/r/beet/box/builds/)\n\n## What's different about this project?\n\n* It's a composer plugin which automatically creates a Vagrantfile.\n* You only add config to your project and don't need to manage a fork of the whole provisioning system.\n* It uses a pre-provisioned base box so it’s much faster to provision.\n* Each new version of the box gets published to Atlas only if all roles are provisioned making the box always stable.\n* With linked clones each VM is a small clone of a single master.\n* You can reuse the same provisioning system for a CI environment.\n* Minimal host machine dependencies.\n\n## Requirements\n\n* [Composer](https://getcomposer.org/download/)\n* [Vagrant](https://www.vagrantup.com/) \u003e= 1.8\n* [Virtualbox](https://www.virtualbox.org/)\n* [Vagrant Hostsupdater](https://github.com/cogitatio/vagrant-hostsupdater)\n```\nvagrant plugin install vagrant-hostsupdater\n```\n* [Vagrant Auto-network](https://github.com/oscar-stack/vagrant-auto_network)\n```\nvagrant plugin install vagrant-auto_network\n```\n\n## Quickstart\n\n```\ncomposer require --dev beet/box\nvagrant up\n```\n\nThis will automatically generate a Vagrantfile and the `.beetbox` directory, which will contain a `config.yml` file used to configure overrides.\n\nYou can see some examples in [`config.yml`](https://github.com/beetboxvm/beetbox/blob/master/.beetbox/config.yml)\n\n## Updating\n\n```\ncomposer update beet/box\n```\n\nVersion constraints should automatically keep you to the same minor release. `(0.0.x)`\nHowever, you may need to update your configuation when upgrading minor releases. `(0.x.0)`\nSee the release notes for more information.\n\n## Drupal Quickstart\n\nTo get a simple Drupal 8 site up and running with Beetbox, run the following commands:\n\n```\ncomposer create-project drupal-composer/drupal-project:8.x-dev drupal8 --stability dev --no-interaction\ncd drupal8\ncomposer require --dev beet/box\nvagrant up\n```\n\nAfter which you can install the site at [http://drupal8.local/install.php](http://drupal8.local/install.php)\n\nor add the following to `./.beetbox/config.yml` and run `vagrant provision` to automatically install drupal:\n\n```\ndrupal_install_site: yes\ndrupal_account_name: admin\ndrupal_account_pass: admin\n```\n\nFor PHP 5.6 add `php_version: \"5.6\"` to `./.beetbox/config.yml`, then run `vagrant provision`.\n\n## Project roles.\n\nThese roles are mantained by Beetbox team.\n\n| Project | Build status |\n| --- | --- |\n| [Backdrop](https://github.com/beetboxvm/ansible-role-beetbox-backdrop) | [![Circle CI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-backdrop.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-backdrop) |\n| [Drupal](https://github.com/beetboxvm/ansible-role-beetbox-drupal) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-drupal.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-drupal) |\n| [Kohana](https://github.com/beetboxvm/ansible-role-beetbox-kohana) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-kohana.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-kohana) |\n| [Modx](https://github.com/beetboxvm/ansible-role-beetbox-modx) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-modx.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-modx) |\n| [Silverstripe](https://github.com/beetboxvm/ansible-role-beetbox-silverstripe) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-silverstripe.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-silverstripe) |\n| [Slim](https://github.com/beetboxvm/ansible-role-beetbox-slim) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-slim.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-slim) |\n| [Symfony](https://github.com/beetboxvm/ansible-role-beetbox-symfony) | [![Circle CI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-symfony.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-symfony) |\n| [Wordpress](https://github.com/beetboxvm/ansible-role-beetbox-wordpress) | [![CircleCI](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-wordpress.svg?style=shield)](https://circleci.com/gh/beetboxvm/ansible-role-beetbox-wordpress) |\n\n## Documentation\n\nhttp://beetbox.readthedocs.io/en/latest/\n\n## Contributing\n\nhttp://beetbox.readthedocs.io/en/latest/contributing/contributing/\n\n## Support\n\n* Feature requests should be created in the [GitHub Beetbox Issue Queue](https://github.com/beetboxvm/beetbox/issues).\n* Bugs should be reported in the [GitHub Beetbox Issue Queue](https://github.com/beetboxvm/beetbox/issues).\n* Use pull requests (PRs) to [contribute](http://beetbox.readthedocs.io/en/latest/contributing/contributing/) to Beetbox.\n\n## Credits\nThis project would not be possible without [geerlingguy's](https://github.com/geerlingguy) awesome Ansible roles from [Drupal VM](https://github.com/geerlingguy/drupal-vm).\nWe encourage you to support him by buying his book [Ansible for DevOps](http://ansiblefordevops.com/).\n\n[JetBrains](https://www.jetbrains.com/phpstorm/) generously offer an Open source licence.\n\nBeetbox is primarily maintained by the Drupal Melbourne (Australia) community.\n\nPlease follow [@beetboxvm](https://twitter.com/beetboxvm) for announcements.\n\n## License\n\nThis project is licensed under the [MIT](https://opensource.org/licenses/MIT) open source license.\n","funding_links":[],"categories":["wordpress"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeetboxvm%2Fbeetbox","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbeetboxvm%2Fbeetbox","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbeetboxvm%2Fbeetbox/lists"}