📄 Add info on how to setup environment

This commit is contained in:
C-3PO 2018-10-24 04:55:07 +02:00
parent b7a6825b86
commit 13f9d4f058
Signed by: c3po
GPG key ID: 62993C4BB4D86F24
2 changed files with 20 additions and 0 deletions

20
docs/setup-environment.md Normal file
View file

@ -0,0 +1,20 @@
All tools are intended to be run on either WSL or Linux.
# Setup
1. On Windows 10, install the Windows Subsystem for Linux (WSL) with either the Ubuntu or Debian distribution.
2. Open a command line shell: Press Win+R and enter `bash`.
2. Install Node.js [(source)](https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions):
```bash
wget -qO- https://deb.nodesource.com/setup_10.x | sudo -E bash -
sudo apt-get install -y nodejs
```
3. Install npm modules:
```bash
sudo npm install -g typescript
```