Monicahq vagrant box is available on Vagrant Cloud.
The only provider for this box is virtualbox.
- Download and install Vagrant for your operating system
- Create a folder to put the vagrant configuration files
mkdir ~/monica
cd ~/monica
- Download the
Vagrantfile
script
curl -sS https://raw.githubusercontent.com/monicahq/monica/master/scripts/vagrant/Vagrantfile -o Vagrantfile
- Edit Vagrantfile to set the appropriate host port number (default: 8080)
config.vm.network "forwarded_port", guest: 80, host: 8080
- Launch the virtual machine with
vagrant up
The virtual machine will be created and pulled up with Vagrantfile script.
Once the process is complete you can either access the virtual machine by typing vagrant ssh
in your terminal, or access the Monica web interface by opening http://localhost:8080 in your browser on your host machine.
- Root database user
- Username:
root
- Password:
changeme
- Username:
- Monica database user
- Username:
monica
- Password:
changeme
- Username:
- The project is installed in
/var/www/html/monica
- The root folder for the web server is
/var/www/html/monica/public
- Download the
Vagrantfile
script
curl -sS https://raw.githubusercontent.com/monicahq/monica/master/scripts/vagrant/build/Vagrantfile -o Vagrantfile
curl -sS https://raw.githubusercontent.com/monicahq/monica/master/scripts/vagrant/build/install-monica.sh -o install-monica.sh
- Run the box by calling:
vagrant up monicahq-latest
for the latest commit, or with a GIT_TAG to run a specific version:
GIT_TAG=$(GIT_TAG) vagrant up monicahq-stable
- Package you own box You can package it to use it more quickly later:
vagrant up monicahq-latest
vagrant package monicahq-latest --output ./my-monicahq.box
vagrant box add my-monicahq ./my-monicahq.box