diff options
author | Frédéric Guillot <fred@kanboard.net> | 2014-10-25 14:41:30 -0400 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2014-10-25 14:41:30 -0400 |
commit | 471736bf8c9304606f183cd6b688b1fae64eea70 (patch) | |
tree | 3730e2fbee77226f740f2f8d9d67d06446d452ca /docs | |
parent | c48cb658ff31cab1cd35215e3a745620c4db186e (diff) |
Change Vagrant config to have multiple boxes
Diffstat (limited to 'docs')
-rw-r--r-- | docs/vagrant.markdown | 53 |
1 files changed, 45 insertions, 8 deletions
diff --git a/docs/vagrant.markdown b/docs/vagrant.markdown index d19e356a..b485f310 100644 --- a/docs/vagrant.markdown +++ b/docs/vagrant.markdown @@ -1,8 +1,45 @@ -How to test Kanboard with Vagrant? -================================== - -- Install Vagrant (http://www.vagrantup.com or apt-get install vagrant) -- Install VirtualBox (https://www.virtualbox.org/ or apt-get install virtualbox) -- Inside the root directory, and run the command `vagrant up` -- Go to http://localhost:8080/index.php -- Login with admin / admin +Run Kanboard with Vagrant +========================= + +Vagrant is used to test Kanboard in different environments. +Several configurations are available: + +- Ubuntu 14.04 LTS with Kanboard/Sqlite +- Ubuntu 14.04 LTS with Kanboard/Mysql +- Ubuntu 14.04 LTS with Kanboard/Postgresql +- Debian 7.6 with Kanboard/Sqlite +- Debian 6 with Kanboard/Sqlite + +To use those configurations, you have to install the **last version** of Virtualbox and Vagrant. + +Standard boxes can be download from [VagrantCloud](https://vagrantcloud.com): + +```bash +vagrant box add ubuntu/trusty64 +vagrant box add chef/debian-7.6 +vagrant box add chef/debian-6.0.10 +``` + +If you want to test Kanboard on Ubuntu with Sqlite: + +```bash +vagrant up sqlite +``` + +After the initialization, go to http://localhost:8001/. + +To test with Mysql: + +```bash +vagrant up mysql +``` + +You have to configure Kanboard to use Mysql or Postgresql the first time (config file and database access). + +Available boxes are: + +- `vagrant up sqlite` +- `vagrant up mysql` +- `vagrant up postgres` +- `vagrant up debian7` +- `vagrant up debian6` |