From 64b219f1fc0b6e9f3b5c012006871fbd07d81f98 Mon Sep 17 00:00:00 2001 From: 0xSage <69952136+0xSage@users.noreply.github.com> Date: Tue, 14 Nov 2023 12:43:51 +0800 Subject: [PATCH] Update README.md --- README.md | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e5405a4a6..5464ff1c1 100644 --- a/README.md +++ b/README.md @@ -55,13 +55,34 @@ As Jan is development mode, you might get stuck on a broken build. To reset your installation: -1. Delete Jan Application from /Applications +1. Delete Jan from your `/Applications` folder -1. Clear cache: - `rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron` - OR - `rm -rf /Users/$(whoami)/Library/Application\ Support/jan` +1. Delete Application data: + ```sh + # Newer versions + rm -rf /Users/$(whoami)/Library/Application\ Support/jan + # Versions 0.2.0 and older + rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron + ``` + +1. Clear Application cache: + ```sh + rm -rf /Users/$(whoami)/Library/Caches/jan* + ``` + +1. Use the following commands to remove any dangling backend processes: + + ```sh + ps aux | grep nitro + ``` + + Look for processes like "nitro" and "nitro_arm_64," and kill them one by one with: + + ```sh + kill -9 + ``` + ## Contributing Contributions are welcome! Please read the [CONTRIBUTING.md](CONTRIBUTING.md) file