mirror of
https://github.com/invariantlabs-ai/invariant-gateway.git
synced 2026-03-10 03:25:46 +00:00
9 lines
219 B
Bash
Executable File
9 lines
219 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# if DEV_MODE is true, then run the app with auto-reload
|
|
if [ "$DEV_MODE" = "true" ]; then
|
|
uvicorn serve:app --host 0.0.0.0 --port 8000 --reload
|
|
else
|
|
uvicorn serve:app --host 0.0.0.0 --port 8000
|
|
fi
|