This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.

13 lines
200 B
Bash

#!/bin/bash
# Date: 2023-03-07
# Developer: Hyperling
# Purpose: Install all dependencies and run the project.
if [[ -z `which npm` ]]; then
sudo apt install npm
fi
npm install package.json
# ???