Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.vscode/
.VSCodeCounter/
Cargo.lock
target/
temp.db
29 changes: 28 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,30 @@
# RSTY Stack Example App

Corresponding video: https://youtu.be/luOgEhLE2sg
Corresponding video: https://youtu.be/luOgEhLE2sg

- Suggest you install dependencies first:
```bash
cargo install --locked wasm-bindgen-cli
cargo install --locked trunk
cargo install cargo-watch
cargo install tauri-cli
```

- install Postman.

Run the following commands in separate terminals:

todo_api
```
cargo watch -c -q -x run
```

todo_web
```
trunk serve --open --port 8081
```

todo_desktop
```
cargo tauri dev
```
3 changes: 3 additions & 0 deletions todo_api/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Generated by Cargo
# will have compiled files and executables
.vscode/
.VSCodeCounter/
Cargo.lock
/target/

Loading