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
13
14
#!/bin/bash

## Builds the project in release mode and runs it.

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

bin/build-css
bin/build-client
cargo build --release
cargo bloat --release -n 10
RUST_BACKTRACE=1 target/release/rustimate