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
Copy file name to clipboardExpand all lines: README.md
+15-9Lines changed: 15 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -189,21 +189,27 @@ public class YourInterceptor
189
189
190
190
## Running locally
191
191
192
-
The easiest way to run this server entirely depends on your environment requirements. At least, the following 4 ways are supported:
192
+
The easiest way to run this server entirely depends on your environment requirements. The following ways are supported:
193
193
194
-
### Using jetty
194
+
### Using Spring Boot
195
195
```bash
196
-
mvn -Pjetty jetty:run
196
+
mvn spring-boot:run
197
197
```
198
198
199
+
The Server will then be accessible at http://localhost:8080/fhir and the CapabilityStatement will be found at http://localhost:8080/fhir/metadata.
200
+
201
+
### Using jetty
202
+
```bash
203
+
mvn -Pjetty spring-boot:run
204
+
```
199
205
200
206
If you need to run this server on a different port (using Maven), you can change the port in the run command as follows:
201
207
202
208
```bash
203
-
mvn -Pjetty -Djetty.port=8888 jetty:run
209
+
mvn -Pjetty -Dserver.port=8888 spring-boot:run
204
210
```
205
211
206
-
Server will then be accessible at http://localhost:8888/ and eg. http://localhost:8888/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to eg.
212
+
The Server will then be accessible at http://localhost:8888/ and eg. http://localhost:8888/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to the following:
207
213
208
214
```yaml
209
215
tester:
@@ -219,7 +225,7 @@ Server will then be accessible at http://localhost:8888/ and eg. http://localhos
219
225
```bash
220
226
mvn clean spring-boot:run -Pboot
221
227
```
222
-
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to eg.
228
+
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust you overlay configuration in the application.yaml to the following:
223
229
224
230
```yaml
225
231
tester:
@@ -235,7 +241,7 @@ Server will then be accessible at http://localhost:8080/ and eg. http://localhos
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to eg.
244
+
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to the following:
239
245
240
246
```yaml
241
247
tester:
@@ -250,7 +256,7 @@ Server will then be accessible at http://localhost:8080/ and eg. http://localhos
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to eg.
259
+
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to the following:
254
260
255
261
```yaml
256
262
tester:
@@ -266,7 +272,7 @@ Server will then be accessible at http://localhost:8080/ and eg. http://localhos
266
272
```bash
267
273
./build-docker-image.sh && docker run -p 8080:8080 hapi-fhir/hapi-fhir-jpaserver-starter:latest
268
274
```
269
-
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to eg.
275
+
Server will then be accessible at http://localhost:8080/ and eg. http://localhost:8080/fhir/metadata. Remember to adjust your overlay configuration in the application.yaml to the following:
0 commit comments