14 lines
224 B
Bash
Executable File
14 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Change to directory where this script is located
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
|
|
|
source ../../config/myenv.sh
|
|
|
|
# Build the example
|
|
cargo build
|
|
|
|
# Run the example
|
|
cargo run --bin openrouter_example
|