Updated comments on makefile

master
DavidOConnor 6 years ago
parent 71b05e02bd
commit d2bf89db06

@ -4,36 +4,36 @@ CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = "true"
# ---- BUILD & CREATE WASMS ---- # ---- BUILD & CREATE WASMS ----
[tasks.build] [tasks.build]
description = "Build only Seed without examples" description = "Build"
workspace = false workspace = false
command = "cargo" command = "cargo"
args = ["build"] args = ["build"]
[tasks.build_release] [tasks.build_release]
description = "Build only Seed without examples" description = "Build, with the --release flag"
workspace = false workspace = false
command = "cargo" command = "cargo"
args = ["build", "--release"] args = ["build", "--release"]
[tasks.create_wasms] [tasks.create_wasms]
description = "Build examples with wasm-pack" description = "Build with wasm-pack"
workspace = false workspace = false
command = "cargo" command = "cargo"
args = ["make", "create_wasm"] args = ["make", "create_wasm"]
[tasks.all] [tasks.all]
description = "Build all - Seed + examples and create wasms" description = "Build, and create wasms"
workspace = false workspace = false
dependencies = ["build", "create_wasms"] dependencies = ["build", "create_wasms"]
[tasks.all_release] [tasks.all_release]
description = "Build all - Seed + examples and create wasms, with the --release flag" description = "Build, and create wasms, with the --release flag"
workspace = false workspace = false
dependencies = ["build_release", "create_wasms"] dependencies = ["build_release", "create_wasms"]
[tasks.serve] [tasks.serve]
description = "Start server for given example" description = "Start server"
install_crate = { crate_name = "https", binary = "http", test_arg = "--help" } install_crate = { crate_name = "https", binary = "http", test_arg = "--help" }
workspace = false workspace = false
command = "http" command = "http"

@ -1,9 +1,7 @@
# Seed Quickstart # Seed Quickstart
**To get started:** **To get started:**
- Clone this repo - Clone this repo: `git clone https://github.com/david-oconnor/seed-quickstart.git`
- If you don't have Rust and cargo-make installed, [Download it](https://www.rust-lang.org/tools/install), and run the following commands: - If you don't have Rust and cargo-make installed, [Download it](https://www.rust-lang.org/tools/install), and run the following commands:

Loading…
Cancel
Save