summaryrefslogtreecommitdiff
path: root/ASDFVM_SETUP.md
diff options
context:
space:
mode:
authorJoseph Ditton <jditton.atomic@gmail.com>2022-03-01 10:02:11 -0700
committerJoseph Ditton <jditton.atomic@gmail.com>2022-03-01 10:02:11 -0700
commit7b36cf4e027e1e276c2e8f8295ba54799c1ca17e (patch)
tree32f61020c1d00622e8395ad87c0d45124de79811 /ASDFVM_SETUP.md
parentfc4a758426cae6e28e0cbd637cb87d01f72c4ab4 (diff)
downloadlocchat-7b36cf4e027e1e276c2e8f8295ba54799c1ca17e.tar.gz
locchat-7b36cf4e027e1e276c2e8f8295ba54799c1ca17e.zip
remove $ from commands for easy copy paste
Diffstat (limited to 'ASDFVM_SETUP.md')
-rw-r--r--ASDFVM_SETUP.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/ASDFVM_SETUP.md b/ASDFVM_SETUP.md
index f3089a4..005668f 100644
--- a/ASDFVM_SETUP.md
+++ b/ASDFVM_SETUP.md
@@ -1,7 +1,7 @@
# ASDFVM Setup
1. Run
```bash
-$ git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.1
+git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.1
```
1. Visit this [link](https://asdf-vm.com/guide/getting-started.html#_3-install-asdf) and follow the installation instructions for your OS and terminal. For Windows with WSL and most linux distros you will look at the "Bash & Git" section. For Mac you will look either at the "Bash & Git (macOS)" or the "ZSH & Git" section depending on your default terminal.
@@ -13,7 +13,7 @@ $ git clone https://github.com/asdf-vm/asdf.git ~/.asdf --branch v0.8.1
## Installing the NodeJS plugin
1. Install the plugin
```bash
-$ asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
+asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
```
## Installing the Postgres plugin
@@ -21,17 +21,17 @@ $ asdf plugin add nodejs https://github.com/asdf-vm/asdf-nodejs.git
Mac
```bash
-$ brew install gcc readline zlib curl ossp-uuid
+brew install gcc readline zlib curl ossp-uuid
```
Ubuntu
```
-$ sudo apt-get install build-essential libssl-dev libreadline-dev zlib1g-dev libcurl4-openssl-dev uuid-dev
+sudo apt-get install build-essential libssl-dev libreadline-dev zlib1g-dev libcurl4-openssl-dev uuid-dev
```
2. Install the plugin
```
-$ asdf plugin-add postgres
+asdf plugin-add postgres
```