4 lines
96 B
Bash
4 lines
96 B
Bash
|
|
#!/bin/bash
|
||
|
|
echo "Starting Python Inference Service..."
|
||
|
|
cd "$(dirname "$0")"
|
||
|
|
python -m app.main
|