7 lines
105 B
Bash
Executable file
7 lines
105 B
Bash
Executable file
#!/bin/sh
|
|
|
|
poetry run uvicorn \
|
|
--host 0.0.0.0 \
|
|
--port 8000 \
|
|
--loop uvloop \
|
|
ajal_demo.web:app
|