0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-29 02:32:37 +00:00
Files
homebrewery/install/ubuntu/install.sh
Sean Robertson aa4de67e90 Ensure curl is installed
Fix mongodb package name
Use apt satisfy instead of apt install
2021-12-17 16:06:34 +13:00

16 lines
287 B
Bash

#!/bin/sh
apt install -y curl
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
apt satisfy -y git nodejs npm mongodb
NODE_ENV=local
export NODE_ENV
git clone https://github.com/naturalcrit/homebrewery.git
cd homebrewery
npm install
npm audit fix
npm run postinstall