mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-14 02:02:19 +00:00
Further explains what the installation is doing.
This commit is contained in:
parent
3a7c994f1a
commit
ee94b69d8d
1 changed files with 6 additions and 1 deletions
|
|
@ -27,6 +27,7 @@ function autostart_habitrpg {
|
|||
echo Setting up HabitRPG...
|
||||
echo cd /vagrant >> /home/vagrant/.bashrc
|
||||
|
||||
echo Updating repositories...
|
||||
apt-get update -qq
|
||||
|
||||
echo Installing Mongodb...
|
||||
|
|
@ -37,8 +38,11 @@ apt-get install -qq git
|
|||
|
||||
echo Installing npm...
|
||||
apt-get install -qq python-software-properties
|
||||
echo Adding repository node.js...
|
||||
apt-add-repository -y ppa:chris-lea/node.js
|
||||
echo Updating repositories...
|
||||
apt-get update -qq
|
||||
echo Installing node.js
|
||||
apt-get install -qq nodejs
|
||||
|
||||
cd /vagrant
|
||||
|
|
@ -52,6 +56,7 @@ npm install
|
|||
echo Seeding Mongodb...
|
||||
node ./src/seed.js
|
||||
|
||||
# Uncomment this line to autostart the habitrpg server when provisioning
|
||||
# Uncomment both lines to autostart the habitrpg server when provisioning
|
||||
# echo Starting HabitRPG server...
|
||||
# autostart_habitrpg
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue