From d37404c20644eb8f96b4d09787f911bb0d618ea7 Mon Sep 17 00:00:00 2001 From: Karel Hala <khala@redhat.com> Date: Mon, 17 Feb 2020 13:37:37 +0100 Subject: [PATCH] Add getting started guide --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/README.md b/README.md index a7f1cae..d01f071 100644 --- a/README.md +++ b/README.md @@ -3,3 +3,28 @@ * AIR api base: `https://muniair-f106.restdb.io` * SUN api base: `https://munisun-d71a.restdb.io` * TEMP api base: `https://munitest-16ae.restdb.io` + +# Getting started +1) Install [node.js](https://nodejs.org/en/download/) on your machine +2) Optional, but recommended: install yarn by running `npm install --global yarn` +3) Install dependencies +By NPM +``` +npm install +``` +Or by yarn +``` +yarn +``` +4) Update `src/auth_config.json` with your variables +5) Run the application +By npm +``` +npm start +``` +Or by yarn +``` +yarn start +``` + + -- GitLab