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.

23 lines
437 B
Bash
Raw Normal View History

2023-03-07 05:02:02 -06:00
#!/bin/bash
# Date: 2023-03-07
# Developer: Hyperling
# Purpose: Install all dependencies and run the project.
2023-03-07 05:15:22 -06:00
# Install any system packages.
2023-03-07 05:02:02 -06:00
if [[ -z `which npm` ]]; then
2023-03-07 05:15:22 -06:00
echo "NPM needs to be installed."
2023-03-07 05:02:02 -06:00
sudo apt install npm
2023-03-07 05:15:22 -06:00
else
echo "NPM is already installed."
2023-03-07 05:02:02 -06:00
fi
2023-03-07 05:15:22 -06:00
# Install/update any project modules.
echo "Ensuring NPM packages are correct."
2023-03-07 05:02:02 -06:00
npm install package.json
2023-03-07 05:15:22 -06:00
# Start backend
node ./server.js
# Start frontend.
2023-03-07 05:02:02 -06:00
# ???