Skip to content

Commit 82e2c3c

Browse files
committed
refine
1 parent 332fc55 commit 82e2c3c

File tree

20 files changed

+88
-7993
lines changed

20 files changed

+88
-7993
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.vscode/
2+
.VSCodeCounter/
3+
Cargo.lock
4+
target/

README.md

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
11
# RSTY Stack Example App
22

3-
Corresponding video: https://youtu.be/luOgEhLE2sg
3+
Corresponding video: https://youtu.be/luOgEhLE2sg
4+
5+
- Suggest you install dependencies first:
6+
```bash
7+
cargo install --locked wasm-bindgen-cli
8+
cargo install --locked trunk
9+
cargo install cargo-watch
10+
cargo install tauri-cli
11+
```
12+
13+
- install Postman.
14+
15+
Run the following commands in separate terminals:
16+
17+
todo_api
18+
```
19+
cargo watch -c -q -x run
20+
```
21+
22+
todo_web
23+
```
24+
trunk serve --open --port 8081
25+
```
26+
27+
todo_desktop
28+
```
29+
cargo tauri dev
30+
```

todo_api/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# Generated by Cargo
22
# will have compiled files and executables
3+
.vscode/
4+
.VSCodeCounter/
5+
Cargo.lock
36
/target/
47

0 commit comments

Comments
 (0)