From 137918ebfc3dd9b42ae1ffd7479743291c4f388f Mon Sep 17 00:00:00 2001 From: Craig B <37049024+Craig-ling@users.noreply.github.com> Date: Fri, 28 Aug 2020 19:15:35 -0400 Subject: [PATCH 1/2] Update README.rst Added instructions on how to install Yarn and Grunt. Placed README in parentheses next to 'this' to remove potential ambiguity. --- README.rst | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a7bce19..b6e7fd7 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,25 @@ create and activate a Python 3.6 (or 3.5) virtual environment:: $ source venv/bin/activate (venv) $ -Making sure you are in the directory containing this file, clone the Dative and +For the next command you need to have Yarn and Grunt installed. You can very this with the following:: + + yarn --version + +and:: + + grunt --version + +You may visit https://classic.yarnpkg.com/en/docs/install/#debian-stable and https://tecadmin.net/install-grunt-on-ubuntu/ for details. The commands necessary to install them are following. Yarn:: + + curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - + echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list + sudo apt update && sudo apt install yarn + +Grunt:: + + sudo npm install -g grunt + +Making sure you are in the directory containing this (README) file, clone the Dative and OLD submodules using the following git command:: (venv) $ git submodule update --init --recursive From 7a21501b8596382747415ffa90eb17552f1fa9ab Mon Sep 17 00:00:00 2001 From: Craig B <37049024+Craig-ling@users.noreply.github.com> Date: Fri, 28 Aug 2020 19:18:16 -0400 Subject: [PATCH 2/2] Update README.rst --- README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rst b/README.rst index b6e7fd7..0cfa9ba 100644 --- a/README.rst +++ b/README.rst @@ -61,7 +61,7 @@ create and activate a Python 3.6 (or 3.5) virtual environment:: $ source venv/bin/activate (venv) $ -For the next command you need to have Yarn and Grunt installed. You can very this with the following:: +For the next command you need to have Yarn and Grunt installed. You may verify this with the following:: yarn --version