run.sh 130 B

12345678910
  1. #!/bin/bash
  2. # 支持传入环境参数,默认 prod
  3. ENV=${1:-prod}
  4. export ENV
  5. echo "当前运行环境: $ENV"
  6. python3 main.py