Updated readme, yarn.lock, package.json

merge-notes
isark 2 years ago
parent 08f0da9746
commit a6c099c6b5

3
.gitignore vendored

@ -40,3 +40,6 @@ testem.log
# System files
.DS_Store
Thumbs.db
#We're only 'supporting' yarn, don't want npm's package lock..
package-lock.json

@ -1,7 +1,21 @@
# Tauri + Yew
# Prerequisites
* https://tauri.app/v1/guides/getting-started/prerequisites
This template should help get you started developing with Tauri and Angular.
* yarn (but npm most likely works too)
## Recommended IDE Setup
* (**Optionally**)
https://crates.io/crates/tauri-cli through:
```
cargo install tauri-cli
```
[VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) + [Angular Language Service](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template).
# Setup & Running
```
# yarn
yarn install
yarn dev
# npm
npm install
npm run dev
```

@ -2,6 +2,7 @@
"name": "tauri-app",
"version": "0.0.0",
"scripts": {
"dev": "tauri dev",
"ng": "ng",
"start": "ng serve",
"build": "ng build",

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save