5 lines
125 B
Bash
5 lines
125 B
Bash
#!/bin/sh
|
|
set -e
|
|
echo "Starting Parcel Subdivision Backend on port 5000..."
|
|
exec uvicorn main:app --host 0.0.0.0 --port 5000
|