mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2026-01-05 03:42:38 +00:00
Update location of FreeBSD install instructions
This commit is contained in:
@@ -10,7 +10,7 @@ These instructions assume that you are installing to a completely new, fresh Fre
|
|||||||
|
|
||||||
2. Install wget (`pkg install -y wget`). On a fresh jail, you will be prompted to press 'Y' to set up `pkg`.
|
2. Install wget (`pkg install -y wget`). On a fresh jail, you will be prompted to press 'Y' to set up `pkg`.
|
||||||
|
|
||||||
3. Download the installation script (`wget --no-check-certificate https://raw.githubusercontent.com/naturalcrit/homebrewery/master/freebsd/install.sh`). The parameter `--no-check-certificate` is required as we haven't set up any trusted certificates/authorities yet.
|
3. Download the installation script (`wget --no-check-certificate https://raw.githubusercontent.com/naturalcrit/homebrewery/master/install/freebsd/install.sh`). The parameter `--no-check-certificate` is required as we haven't set up any trusted certificates/authorities yet.
|
||||||
|
|
||||||
4. Make the downloaded file executable (`chmod +x install.sh`).
|
4. Make the downloaded file executable (`chmod +x install.sh`).
|
||||||
|
|
||||||
|
|||||||
14
install/ubuntu/install.sh
Normal file
14
install/ubuntu/install.sh
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
#!/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
|
||||||
Reference in New Issue
Block a user