mirror of
https://github.com/aljazceru/Auto-GPT.git
synced 2026-01-19 22:14:28 +01:00
8 lines
141 B
Bash
Executable File
8 lines
141 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Kill processes using port 8080 if any.
|
|
if lsof -t -i :8080; then
|
|
kill $(lsof -t -i :8080)
|
|
fi
|
|
poetry run agbenchmark serve
|