rustimate 0.1.0

A planning poker app, mostly developed to learn Rust
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

## Watches the project directories, and runs the main application, restarting when changes are detected.
## Requires cargo-watch

set -e
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
project_dir=${dir}/..
cd $project_dir

# cargo clean -p rustimate
RUST_BACKTRACE=1 cargo watch --ignore=bin --ignore=crates/client --ignore=crates/assets/embed --ignore=doc --ignore=log/rustimate.log --ignore=project --ignore=stylesheets -x 'run -- server'