-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add web
frontend to hello-world
example
#8
Conversation
web
frontend to hello-world
example
66c5564
to
963d7a7
Compare
} | ||
|
||
message GreetResponse { | ||
string message = 1; // E.g. "Hello, World!". | ||
string greeting = 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't really see the purpose of Greet
returning the same greeting
that was sent in the request? Can we just remove this field from the response?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sp33drac3r it seems like the comments in this file were resolved, but the changes weren't made? How come?
Current Aviator status
This PR was merged using Aviator. |
fb1030d
to
650f685
Compare
08aae14
to
4c8ac71
Compare
053b61f
to
2cef098
Compare
2cef098
to
a73bc25
Compare
This PR adds a web frontend to hello world.
I've made a few changes to the hello-world service. We now have:
Running
rsm protoc
will create some files we don't actually need, e.g. react ts bindings foroption.proto
. Thoese files have been removed for source control, for now. I'm happy to add them back if anyone objects.Completes #1914
IMPORTANTLY: symlinking in the api files did not work. Copying them in did. We should restart the discussion of having
rsm protoc
output those files directly to both top level/api
and/web/src/api
.I discovered #1912 as part of this PR.