mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-09 10:51:37 +00:00
added server styling settings
This commit is contained in:
parent
76ea038f5a
commit
32ab726fe9
11 changed files with 466 additions and 3 deletions
25
readme.md
25
readme.md
|
|
@ -450,3 +450,28 @@ If you are using VSCode, this project includes a couple of pre-defined targets t
|
|||
# How to Support
|
||||
|
||||
[See the incomplete "How to Support" page](https://www.audiobookshelf.org/support)
|
||||
|
||||
# Development
|
||||
|
||||
### Killing Running Processes
|
||||
When developing locally, you might need to kill running instances of the client or server. Here are some helpful commands:
|
||||
|
||||
```bash
|
||||
# Kill process on port 3000 (client)
|
||||
sudo kill $(lsof -t -i:3000)
|
||||
|
||||
# Kill process on port 3333 (server)
|
||||
sudo kill $(lsof -t -i:3333)
|
||||
```
|
||||
|
||||
You can also find and kill processes manually:
|
||||
```bash
|
||||
# List all Node.js processes
|
||||
ps aux | grep node
|
||||
|
||||
# Kill processes by PID
|
||||
kill <PID>
|
||||
|
||||
# Force kill if process won't exit
|
||||
kill -9 <PID>
|
||||
```
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue