JR Utily

Update README.md

Showing 1 changed file with 23 additions and 20 deletions
...@@ -16,33 +16,36 @@ ...@@ -16,33 +16,36 @@
16 - Activer le sub-module pour avoir directement les sources du Grog au bon endroit 16 - Activer le sub-module pour avoir directement les sources du Grog au bon endroit
17 17
18 ``` 18 ```
19 - git submodule update --init data/web-application/ 19 +git submodule update --init data/web-application/
20 - cd data/web-application/ 20 +cd data/web-application/
21 - git checkout master 21 +git checkout master
22 - git pull origin master 22 +git pull origin master
23 ``` 23 ```
24 24
25 ### Création de la VM et fin de la préparation 25 ### Création de la VM et fin de la préparation
26 26
27 - cd vagrant 27 +```
28 - vagrant up 28 +cd vagrant
29 - vagrant halt 29 +vagrant up
30 - 30 +vagrant halt
31 +```
31 32
32 ### Test de grog-cubi, accessible sur le port `127.0.0.1:8080` : 33 ### Test de grog-cubi, accessible sur le port `127.0.0.1:8080` :
33 34
34 - cd vagrant 35 +```
35 - vagrant up 36 +cd vagrant
36 - vagrant ssh 37 +vagrant up
37 - cd /vagrant_data/web-application 38 +vagrant ssh
38 - mvn clean install 39 +cd /vagrant_data/web-application
39 - mvn tomee:run 40 +mvn clean install
40 - exit 41 +mvn tomee:run
41 - vagrant halt 42 +exit
42 - 43 +vagrant halt
44 +```
43 45
44 ### Suppression de la VM 46 ### Suppression de la VM
45 47
46 - cd vagrant 48 +```
47 - vagrant destroy 49 +cd vagrant
48 - 50 +vagrant destroy
51 +```
......