From ffe656a8dfc28e6961b7bfa35e135f1c4a5fd70c Mon Sep 17 00:00:00 2001 From: Pipiasi Bogdan Date: Tue, 2 Nov 2021 18:22:34 +0100 Subject: [PATCH] Update A little install tutorial. --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 311c25e..c95d833 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,18 @@ # Spider A web-based, entirely client-side, editor and compiler for SourcePawn development. +## Installing +``` +apt install nodejs npm; +npm update -g npm; +npm -g install grunt; +npm -g install grunt-cli; +``` + +1. Change to the project's root directory `cd /your-directory/` +2. Install project dependencies with `npm install` +3. Build with `grunt` + ## Building `grunt` alone will do a production build with the appcache manifest and gzip compression. `grunt serve` will start a local webserver and rebuild on changes.