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

## Builds the css resources using `build-css`, then watches for changes in `stylesheets`.
## Requires SCSS available on the path

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

bin/build-css
echo "Watching sass compilation for [crates/assets/stylesheets/style.scss]..."
sass --watch --no-source-map crates/assets/stylesheets/style.scss crates/assets/embed/vendor/style.css