You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
872 B
Markdown
27 lines
872 B
Markdown
# Seed Quickstart
|
|
|
|
**To get started:**
|
|
- Clone this repo
|
|
|
|
- If you don't have Rust installed, nightly set up, and wasm-bindgen, [Download it](https://www.rust-lang.org), and run the following commands:
|
|
|
|
`rustup update`
|
|
|
|
`rustup default nightly`
|
|
|
|
`rustup target add wasm32-unknown-unknown --toolchain nightly`
|
|
|
|
`cargo +nightly install wasm-bindgen-cli`
|
|
|
|
- Run `build.sh` or `build.ps1`, then open `index.html` in a web browser, or use a local server. (Opening the file directly may not work in some browsers.)
|
|
|
|
|
|
Once you rename the crate in `Cargo.toml` (The `name` field under `[Package]`), make the
|
|
following changes:
|
|
|
|
- Replace both occurances of `appname` (`/appname.js` and `/appname.wasm`) in `index.html` with your crate's name.
|
|
|
|
- Make the same replacement in either `build.sh`, or `build.ps1`, depending on your
|
|
operating system. You may delete the other one.
|
|
|