mirror of
https://git.moonleay.net/Websites/liljudd-website.git
synced 2025-07-24 01:35:08 +02:00
refactor: Update time planning feature
- 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
This commit is contained in:
parent
faa42f0899
commit
3c404ab5fa
8 changed files with 130 additions and 146 deletions
5
kill-running-server.sh
Executable file
5
kill-running-server.sh
Executable file
|
@ -0,0 +1,5 @@
|
|||
#!/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
|
Loading…
Add table
Add a link
Reference in a new issue