Skip to content

Commit 6e55963

Browse files
committed
Rust GRPC web server with svelte as FE
1 parent 73af68d commit 6e55963

File tree

19 files changed

+3080
-0
lines changed

19 files changed

+3080
-0
lines changed

rust-grpc-web/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[workspace]
2+
3+
members = [
4+
"server",
5+
]

rust-grpc-web/client/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/node_modules/
2+
/public/build/
3+
4+
.DS_Store
5+
build/
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["svelte.svelte-vscode"]
3+
}

rust-grpc-web/client/README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
brew tap homebrew/cask-versions
2+
brew update
3+
brew tap homebrew/cask
4+
brew install node
5+
brew install protobuf
6+
brew install protoc-gen-grpc-web
7+
8+
to run client (in client):
9+
npm install
10+
npm run dev
11+
12+
to run server (in root):
13+
cargo run

0 commit comments

Comments
 (0)