Skip to content

sumn2u/survey-app

Repository files navigation

Survey-app Build Status

Survey app challenge.

Prerequisites

You will need the following things properly installed on your laptop/pc.

Installing Nodejs via nvm docs

  • Install Script -curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
  • or wget -qO- https://raw.githubusercontent.com/creationix/nvm/v0.33.1/install.sh | bash
  • Load nvm -export NVM_DIR="$HOME/.nvm"
  • [ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
  • Verify Installation
  • command -v nvm
  • nvm -v
  • Download latest node
  • nvm install node
  • Use Node
  • nvm use node

Installation

  • git clone <repository-url> this repository
  • change into the new directory
  • npm install

Running / Development

Running Tests

  • npm run test:dev

Building

  • npm run build (production)

Deploying

  • yarn run deploy

Further Reading / Useful Links