This commit is contained in:
Matthew Ryan Dillon 2021-12-09 12:05:44 -07:00
parent 5628624f92
commit 5330247f8e

View file

@ -1,6 +1,6 @@
# gpx-web-utils
## quickstart
## development
```bash
cargo install --locked trunk
@ -8,3 +8,14 @@ cargo install wasm-bindgen-cli
rustup target add wasm32-unknown-unknown
trunk serve
```
## deployment
```bash
trunk build --release
git switch deploy
rm index-*
cp dist/* .
git commit -am 'foo'
git push <DOKKU INSTANCE> deploy
```