13 lines
231 B
Bash
Executable File
13 lines
231 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
if [ ! -x ".venv/bin/python" ]; then
|
|
echo "가상환경이 없습니다. 먼저 실행하세요: ./scripts/setup_env.sh"
|
|
exit 1
|
|
fi
|
|
|
|
exec .venv/bin/python main.py
|
|
|