11 lines
239 B
Bash
Executable File
11 lines
239 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
# 🚀 Start dev server with file watching and browser reload
|
|
reloadd \
|
|
--watch src \
|
|
--watch src/templates \
|
|
--watch examples \
|
|
--port 8080 \
|
|
--run "cargo build" \
|
|
--run "cargo run --example server" |