7 lines
89 B
Bash
7 lines
89 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
ENGINE="${ENGINE:-rust}"
|
|
|
|
exec python run.py --prod --engine "$ENGINE"
|