-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ivan Ivanov <ivanivanov.ii726@gmail.com>
- Loading branch information
Showing
2 changed files
with
19 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,32 @@ | ||
# Java SDK TCK Server | ||
|
||
## Description | ||
|
||
This module contains implementation of the JSON-RPC server for the Java SDK to interpret and process requests from the Test Driver based on the [TCK's](https://github.com/hiero-ledger/hiero-sdk-tck) requirements. Upon receiving a request, it executes the corresponding function or procedure associated with the method specified in the request. Subsequently, it prepares the response in JSON format and sends it back to the test driver. | ||
|
||
## Setup | ||
|
||
**1. Navigate into tck directory.** | ||
|
||
```shell | ||
cd tck | ||
``` | ||
|
||
**2. Build the project using Gradle.** | ||
|
||
```shell | ||
./gradlew build | ||
``` | ||
|
||
**3. Run the server.** | ||
|
||
```shell | ||
./gradlew bootRun | ||
``` | ||
|
||
By default, the server will occupy port 80. If you need to specify a different port, modify the port in the `application.yml` file: | ||
``` yaml | ||
|
||
```yaml | ||
server: | ||
port: <PORT> | ||
``` |