Skip to content

Commit

Permalink
Update with real commands.
Browse files Browse the repository at this point in the history
  • Loading branch information
slinkydeveloper committed Dec 1, 2023
1 parent ae64dac commit 860f2d7
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/quickstart.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,10 @@ npm install
</TabItem>
<TabItem value="jvm" label="Java" default>

Grab one of the available Java templates:
Grab the Java Hello world example:

```shell
# Template for service deployed as HTTP service
# TODO(slinkydeveloper) add wget | unzip && cd command
EXAMPLE=jvm-hello-world-java-http; wget https://github.com/restatedev/examples/releases/latest/download/$EXAMPLE.zip && unzip $EXAMPLE.zip -d $EXAMPLE && rm $EXAMPLE.zip
```

</TabItem>
Expand Down Expand Up @@ -157,7 +156,7 @@ curl -X POST http://localhost:8080/myservice/hello -H 'content-type: application
<TabItem value="jvm" label="Java" default>

```shell
# TODO(slinkydeveloper) curl command
curl -X POST http://localhost:8080/greeter.Greeter/Greet -H 'content-type: application/json' -d '{"name": "Pete"}'
```

</TabItem>
Expand Down

0 comments on commit 860f2d7

Please sign in to comment.