10 lines
162 B
Bash
Executable File
10 lines
162 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
|
|
pushd frontend
|
|
trunk build
|
|
popd
|
|
|
|
cargo run --bin server --release -- --port 8080 --addr :: --static-dir ./dist
|