We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f30aa36 commit e063081Copy full SHA for e063081
1 file changed
README.md
@@ -69,6 +69,23 @@ Run the following commands:
69
1. `./gradlew createDB -PdbName=fineract_default`
70
1. `./gradlew devRun`
71
72
+Fineract is now running, and will be listening for API requests on port 8443 by default.
73
+
74
+Confirm Fineract is ready with, for example:
75
76
+```bash
77
+curl --insecure https://localhost:8443/fineract-provider/actuator/health`
78
+```
79
80
+To test authenticated endpoints, include credentials in your request:
81
82
83
+curl --location \
84
+ https://localhost:8443/fineract-provider/api/v1/clients \
85
+ --header 'Content-Type: application/json' \
86
+ --header 'Fineract-Platform-TenantId: default' \
87
+ --header 'Authorization: Basic bWlmb3M6cGFzc3dvcmQ='
88
89
90
<br>INSTRUCTIONS: How to build the JAR file
91
============
0 commit comments