docs: Enhance deployment instructions
Some checks failed
/ Build Windows (push) Has been cancelled

Added instructions for updating AppleMusicDecrypt.
This commit is contained in:
itouakirai
2025-11-07 16:11:45 +08:00
committed by GitHub
parent 1f9cb82584
commit 653e57ad0d

View File

@@ -11,7 +11,7 @@ pd i debian
## Step 2: Deploy AppleMusicDecrypt
Enter the Debian environment(`pd login debian`)
```shell
apt update && apt install pipx && pipx install poetry && pipx ensurepath && source ~/.bashrc
apt update && apt install pipx git -y && pipx install poetry && pipx ensurepath && source ~/.bashrc
git clone https://github.com/WorldObservationLog/AppleMusicDecrypt
cd AppleMusicDecrypt
bash ./tools/install-deps.sh
@@ -34,3 +34,12 @@ playlistDirPathFormat = "/sdcard/Music/playlists/{playlistName}"
```
## Step 4: Run AppleMusicDecrypt
`poetry run python main.py`
## Update AppleMusicDecrypt
```shell
pd login debian
cd AppleMusicDecrypt
git checkout -f && git pull
poetry update
cp config.example.toml config.toml
nano config.toml
```