Skip to content
This repository has been archived by the owner on Aug 18, 2020. It is now read-only.

Commit

Permalink
Change default name, and bump memory (#23)
Browse files Browse the repository at this point in the history
* Change default name, and bump memory
  * Partially addresses Islandora/documentation#537

* readme

* readme
  • Loading branch information
ruebot authored and dannylamb committed Mar 21, 2017
1 parent bccb0fd commit 5134eae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

## Introduction

The is a development environment virtual machine for the Islandora and Fedora 4 project. It should work on any operating system that supports VirtualBox and Vagrant.
The is a development environment virtual machine for Islandora CLAW. It should work on any operating system that supports VirtualBox and Vagrant.

N.B. This virtual machine **should not** be used in production.

Expand All @@ -18,7 +18,7 @@ N.B. This virtual machine **should not** be used in production.

### System Resources

By default the virtual machine that is built uses 2GB of RAM. Your host machine will need to be able to support the additional memory use. You can override the CPU and RAM allocation by creating `ISLANDORA_VAGRANT_CPUS` and `ISLANDORA_VAGRANT_MEMORY` environment variables and setting the values. For example, on an Ubuntu host you could add to `~/.bashrc`:
By default the virtual machine that is built uses 3GB of RAM. Your host machine will need to be able to support the additional memory use. You can override the CPU and RAM allocation by creating `ISLANDORA_VAGRANT_CPUS` and `ISLANDORA_VAGRANT_MEMORY` environment variables and setting the values. For example, on an Ubuntu host you could add to `~/.bashrc`:

```bash
export ISLANDORA_VAGRANT_CPUS=4
Expand All @@ -30,7 +30,7 @@ export ISLANDORA_VAGRANT_MEMORY=4096
If you use a DNS or host file management plugin with Vagrant, you may want to set a specific hostname for the virtual machine. You can do that with the `ISLANDORA_VAGRANT_HOSTNAME` variable. The `ISLANDORA_VAGRANT_VIRTUALBOXDESCRIPTION` variables can be used to track the VM build. For example:

```bash
export ISLANDORA_VAGRANT_HOSTNAME="islandora-deux"
export ISLANDORA_VAGRANT_HOSTNAME="claw"
export ISLANDORA_VAGRANT_VIRTUALBOXDESCRIPTION="Islandora CLAW"
```

Expand Down Expand Up @@ -86,20 +86,20 @@ The default VM login details are:

## Environment

- Ubuntu 16.04.1
- Drupal 8.1.10
- Ubuntu 16.04.2
- Drupal 8.2.7
- MySQL 5.7.15
- Apache 2.4.18
- Tomcat 8.0.32.0
- Solr 6.2.1
- Camel 2.18.1
- Fedora 4.7.0
- Fedora 4.7.2
- Fedora Camel Component 4.5.0
- BlazeGraph 2.4.1
- Karaf 4.0.5
- Alpaca 0.1.1-SNAPSHOT
- Karaf 4.0.8
- Alpaca 0.3.1-SNAPSHOT
- Islandora 8.x-1.x
- PHP 7.0.8
- PHP 7.0.15
- Java 8 (Oracle)

## Windows Troubleshooting
Expand Down
4 changes: 2 additions & 2 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
VAGRANTFILE_API_VERSION = "2"

$cpus = ENV.fetch("ISLANDORA_VAGRANT_CPUS", "1")
$memory = ENV.fetch("ISLANDORA_VAGRANT_MEMORY", "2048")
$hostname = ENV.fetch("ISLANDORA_VAGRANT_HOSTNAME", "islandora-deux")
$memory = ENV.fetch("ISLANDORA_VAGRANT_MEMORY", "3072")
$hostname = ENV.fetch("ISLANDORA_VAGRANT_HOSTNAME", "claw")
$virtualBoxDescription = ENV.fetch("ISLANDORA_VAGRANT_VIRTUALBOXDESCRIPTION", "IslandoraCLAW")

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
Expand Down

0 comments on commit 5134eae

Please # to comment.