mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-23 17:25:08 +02:00
- Update checksums for browser compatibility - Add script to kill running server process - Refactor time planning structure and handling - Adjust database schema and type definitions accordingly
5 lines
165 B
Bash
Executable file
5 lines
165 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# This script checks if a process is running on port 3000 and kills it if it's found
|
|
|
|
lsof -i TCP:3000 | grep LISTEN | awk '{print $2}' | xargs kill -9
|