mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-16 23:22:22 +00:00
3 lines
176 B
Bash
3 lines
176 B
Bash
# Easily kill process on port because sometimes nodemon fails to reboot
|
|
kill -9 $(lsof -t -i tcp:5000) &
|
|
kill -9 $(lsof -t -i tcp:3001) # if running default for MacOS Monterey
|