16 lines
294 B
Shell
Executable file
16 lines
294 B
Shell
Executable file
#!/bin/bash
|
|
|
|
DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")")
|
|
CFG="${DIR}/../packages/jobboerse/config/prod-config.toml"
|
|
RUN_DIR="${DIR}/../packages/jobboerse"
|
|
|
|
pushd "${RUN_DIR}"
|
|
|
|
cargo run \
|
|
--package jobboerse \
|
|
--bin jobboerse \
|
|
--release \
|
|
-- \
|
|
--config "${CFG}"
|
|
|
|
popd
|