From 162f70ac1a075e96467e44c7065a1fbd4a236211 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 22 Jul 2021 16:10:09 -0700 Subject: [PATCH] docs(install): add uninstall instructions --- docs/install.md | 56 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/docs/install.md b/docs/install.md index b5403aed..071e69ab 100644 --- a/docs/install.md +++ b/docs/install.md @@ -15,6 +15,11 @@ - [Raspberry Pi](#raspberry-pi) - [Termux](#termux) - [Cloud providers](#cloud-providers) +- [Uninstall](#uninstall) + - [install.sh](#installsh-1) + - [Homebrew](#homebrew) + - [yarn, npm](#yarn-npm-1) + - [Debian, Ubuntu](#debian-ubuntu-1) @@ -246,3 +251,54 @@ information. We maintain [one-click apps and install scripts for cloud providers](https://github.com/cdr/deploy-code-server) such as DigitalOcean, Railway, Heroku, and Azure. + +## Uninstall + +code-server can be completely uninstalled by removing the application directory, and your user configuration directory. + +To delete settings and data: + +```shell +rm -rf ~/.local/share/code-server ~/.config/code-server +``` + +### install.sh + +If you installed with the install script, by default code-server will be in `~/.local/lib/code-server-` and you can remove it with `rm -rf`. e.g. + +```shell +rm -rf ~/.local/lib/code-server-* +``` + +### Homebrew + +To remove the code-server homebrew package, run: + +```shell +brew remove code-server + +# Alternatively +brew uninstall code-server +``` + +### yarn, npm + +To remove the code-server global module, run: + +```shell +yarn global remove code-server +``` + +or + +```shell +npm uninstall -g code-server +``` + +### Debian, Ubuntu + +To uninstall, run: + +```shell +sudo apt remove code-server +```