From 13f9d4f058d777f3fec7560f95a01bcef9e40fae Mon Sep 17 00:00:00 2001 From: C-3PO Date: Wed, 24 Oct 2018 04:55:07 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=84=20Add=20info=20on=20how=20to=20set?= =?UTF-8?q?up=20environment?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Patch files.md => docs/patch-files.md | 0 docs/setup-environment.md | 20 ++++++++++++++++++++ 2 files changed, 20 insertions(+) rename Patch files.md => docs/patch-files.md (100%) create mode 100644 docs/setup-environment.md diff --git a/Patch files.md b/docs/patch-files.md similarity index 100% rename from Patch files.md rename to docs/patch-files.md diff --git a/docs/setup-environment.md b/docs/setup-environment.md new file mode 100644 index 0000000..bf30bf4 --- /dev/null +++ b/docs/setup-environment.md @@ -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 + ```