0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 18:32:41 +00:00
Files
homebrewery/install/ubuntu/install.sh
2021-12-17 15:21:52 +13:00

14 lines
274 B
Bash

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