Skip to content

Commit

Permalink
Updated to use composer.
Browse files Browse the repository at this point in the history
  • Loading branch information
thom8 committed Jan 24, 2017
1 parent 1610fe4 commit b95f702
Show file tree
Hide file tree
Showing 9 changed files with 107 additions and 56 deletions.
4 changes: 0 additions & 4 deletions .beetbox/.gitignore

This file was deleted.

18 changes: 0 additions & 18 deletions .beetbox/config.yml

This file was deleted.

3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.beetbox/
.vagrant/
docroot/
vendor/
Vagrantfile
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Simple Vagrant config to download and install the latest dev version of Drupal 8

## Requirements

* [Composer](https://getcomposer.org/download/)
* [Vagrant](https://www.vagrantup.com/) >= 1.8
* [Virtualbox](https://www.virtualbox.org/)
* [Vagrant Hostsupdater](https://github.com/cogitatio/vagrant-hostsupdater)
Expand All @@ -14,10 +15,11 @@ Simple Vagrant config to download and install the latest dev version of Drupal 8

```
git clone https://github.com/thom8/drupal8-vagrant.git drupal8-vagrant && cd $_
composer install
vagrant up
```

2. Go to http://d8.ddns.net/
2. Go to http://d8.local/

```
username: admin
Expand Down
25 changes: 0 additions & 25 deletions Vagrantfile

This file was deleted.

40 changes: 40 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"name": "thom8/drupal8-vagrant",
"description": "",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"require-dev": {
"beet/box": "dev-master"
},
"scripts": {
"up": "vagrant up",
"provision": "vagrant provision",
"reset": [
"vagrant ssh -c 'drush --root=/var/beetbox/docroot sql-drop -y'",
"@provision"
],
"reset-full": [
"vagrant ssh -c '[ ! -d /var/beetbox/docroot ] && sudo chmod -R 755 /var/beetbox/docroot && rm -rf /var/beetbox/docroot'",
"@provision"
]
},
"process-timout": 0,
"extra": {
"beetbox": {
"config": {
"vagrant_ip": "192.168.88.88",
"beet_domain": "d8.local",
"beet_root": "{{ beet_base }}/docroot",
"beet_site_name": "Drupal 8 Sprint Box",
"drupal_create_makefile": true,
"drupal_make_working_copy": true,
"drupal_build_makefile": true,
"drupal_install_site": true,
"drupal_account_name": "admin",
"drupal_account_pass": "admin",
"php_memory_limit": "284M"
}
}
}
}
61 changes: 61 additions & 0 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 0 additions & 4 deletions reset-full.sh

This file was deleted.

4 changes: 0 additions & 4 deletions reset.sh

This file was deleted.

0 comments on commit b95f702

Please sign in to comment.