Name Last Update
data Loading commit data...
vagrant Loading commit data...
.gitignore Loading commit data...
.gitmodules Loading commit data...
README.md Loading commit data...

Configuration Vagrant en bootstrap Bash de la VM projet de grog-cubi

Prérequis

  • Git (évidement)
  • Vagrant
  • VirtualBox

Procédure

Préparation Vagrant

  • Cloner le dépôt dans un dossier de travail spécifique
  • Activer le sub-module pour avoir directement les sources du Grog au bon endroit git submodule update --init data/web-application/

Création de la VM et fin de la préparation

cd vagrant
vagrant up
vagrant halt

Test de grog-cubi, accessible sur le port 127.0.0.1:8080 :

cd vagrant
vagrant up
vagrant ssh
cd /vagrant_data/web-application
mvn clean install
mvn tomee:run
exit
vagrant halt

Suppression de la VM

cd vagrant
vagrant destroy