name: stop-dev description: Stop the development server running on port 3000 disable-model-invocation: true
Stop the development server:
- Find any process running on port 3000 with
lsof -ti:3000 - If a process is found, kill it with
kill $(lsof -ti:3000) - If no process is found, inform the user that no server is running on port 3000
- Verify the port is freed