9 lines
120 B
Bash
9 lines
120 B
Bash
#!/bin/bash
|
|
|
|
# Get the directory of the script and change to it
|
|
cd "$(dirname "$0")"
|
|
|
|
export SECRET_KEY=1234
|
|
|
|
cargo run
|