5 lines
89 B
Bash
5 lines
89 B
Bash
#!/bin/sh
|
|
set -eu
|
|
|
|
exec uvicorn app.main:create_app --factory --host 0.0.0.0 --port 8000
|