You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,8 +19,8 @@ This repository contains the server part of the project, if you want to check th
21
19
22
20
## Summary
23
21
24
-
- Installation for contributing to this project (click [here](#development-environment))
25
-
- Installation of the application (click [here](#installation))
22
+
-[Installation for contributing to this project](#development-environment)
23
+
-[Installation of the application](#installation)
26
24
27
25
28
26
@@ -76,14 +74,15 @@ To start or building the application or execute tests, you need to access the VM
76
74
vagrant ssh
77
75
```
78
76
79
-
Before starting the application don't forget to start the server. If you have not installed it yet click [here](https://github.com/CodeChillAlluna/code-chill-server).
80
77
81
78
82
-
83
-
#### Start the application
79
+
#### Start the API
84
80
85
81
```sh
86
82
mvn spring-boot:run
83
+
84
+
# You can also use our custom script to clean docker container before start
85
+
./server run
87
86
```
88
87
89
88
Then you can request : http://localhost:8080 to view use the API.
@@ -93,130 +92,35 @@ Then you can request : http://localhost:8080 to view use the API.
93
92
#### Execute tests
94
93
95
94
```sh
96
-
mvn test -DforkCount=0
95
+
mvn test
96
+
97
+
# You can also use our custom script to clean docker container before start
98
+
./server test
97
99
```
98
100
99
101
100
102
101
103
#### Build the application
102
104
103
105
```sh
104
-
mvn clean package -DforkCount=0
105
-
```
106
-
107
-
108
-
109
-
## Installation
106
+
mvn clean package
110
107
111
-
Here is the setup to installing the production environment if you want to use this project.
0 commit comments