4 lines
148 B
Bash
Executable File
4 lines
148 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This script starts the FastAPI server using uvicorn
|
|
uvicorn webapi.bootstrap.application:create_app --reload --host 0.0.0.0 --port 8005 |