Setup Instructions

To set up and run the web application, follow the steps below:

  1. Update the package lists and upgrade installed packages:
apt update -y
  1. Install the required packages wget and zip:
apt install -y wget zip
  1. Download the webapp.zip file from the specified URL:
wget https://stackgenie-web.s3.amazonaws.com/webapp.zip
  1. Unzip the webapp.zip file:
unzip webapp.zip
  1. Move into the extracted directory:
cd webapp
  1. Execute the webapp:
./webapp

Once you have completed these steps, the web application should be up and running.

Note: The commands assume you are using a Debian-based Linux distribution with the apt package manager.

or you can use the following command in single step:

sudo apt update -y  && sudo apt install -y wget zip && sudo mkdir webapp && cd webapp && wget https://stackgenie-web.s3.amazonaws.com/webapp.zip && unzip webapp && ./webapp &