#!/bin/bash

echo "Installing Social Analyzer (WebApp)..."
sudo apt-get update
sudo apt-get install -y firefox-esr tesseract-ocr git nodejs npm
sudo git clone https://github.com/qeeqbox/social-analyzer.git
cd social-analyzer
sudo npm ci
npm start
echo "Done."
