commit
ea7f92f2d7
|
@ -54,7 +54,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
|
||||||
#
|
#
|
||||||
# # Use VBoxManage to customize the VM. For example to change memory:
|
# # Use VBoxManage to customize the VM. For example to change memory:
|
||||||
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
vb.customize ["modifyvm", :id, "--memory", "1024"]
|
||||||
vb.customize ["modifyvm", :id, "--name", "MONARC FO - Ubuntu 18.04"]
|
vb.customize ["modifyvm", :id, "--name", "MONARC FO - Ubuntu 18.04 - 1"]
|
||||||
end
|
end
|
||||||
#
|
#
|
||||||
# View the documentation for the provider you're using for more
|
# View the documentation for the provider you're using for more
|
||||||
|
|
|
@ -129,6 +129,13 @@ ln -s ./../../vendor/monarc/frontoffice FrontOffice
|
||||||
cd $PATH_TO_MONARC
|
cd $PATH_TO_MONARC
|
||||||
|
|
||||||
|
|
||||||
|
mkdir -p $PATH_TO_MONARC/data/cache
|
||||||
|
mkdir -p $PATH_TO_MONARC/data/LazyServices/Proxy
|
||||||
|
mkdir -p $PATH_TO_MONARC/data/DoctrineORMModule/Proxy
|
||||||
|
chown -R www-data data
|
||||||
|
chmod -R 777 data
|
||||||
|
|
||||||
|
|
||||||
# Front-end
|
# Front-end
|
||||||
mkdir node_modules
|
mkdir node_modules
|
||||||
cd node_modules
|
cd node_modules
|
||||||
|
@ -259,8 +266,9 @@ mysql -u $DBUSER_MONARC -p$DBPASSWORD_MONARC monarc_common < db-bootstrap/monarc
|
||||||
|
|
||||||
|
|
||||||
echo -e "\n--- Installation of Grunt… ---\n"
|
echo -e "\n--- Installation of Grunt… ---\n"
|
||||||
sudo apt-get -y install npm > /dev/null
|
curl -sL https://deb.nodesource.com/setup_13.x | sudo bash -
|
||||||
npm install -g grunt-cli > /dev/null
|
sudo apt-get install -y nodejs
|
||||||
|
sudo npm install -g grunt-cli
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue