Skip to content

Commit

Permalink
Update troubleshooting.md
Browse files Browse the repository at this point in the history
  • Loading branch information
freelerobot authored Nov 14, 2023
1 parent 64b219f commit db86077
Showing 1 changed file with 19 additions and 11 deletions.
30 changes: 19 additions & 11 deletions docs/docs/guides/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,28 @@ sidebar_position: 5
Please note that 👋Jan is in "development mode," and you might encounter issues. If you need to reset your installation, follow these steps:

## Issue 1: Broken Build
1. Delete the Jan Application from your computer.

2. Clear the cache by running one of the following commands:
As Jan is development mode, you might get stuck on a broken build.

```sh
rm -rf /Users/$(whoami)/Library/Application\ Support/jan-electron
```
To reset your installation:

or
1. Delete Jan from your `/Applications` folder

```sh
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*
```

3. If the above steps fail, use the following commands to find and kill any problematic processes:
1. Use the following commands to remove any dangling backend processes:

```sh
ps aux | grep nitro
Expand All @@ -31,4 +38,5 @@ Please note that 👋Jan is in "development mode," and you might encounter issue

```sh
kill -9 <PID>
```
```

0 comments on commit db86077

Please sign in to comment.