Created
September 16, 2016 09:04
-
-
Save Veve2/c8837526abf4c79aa22cd7b551134d45 to your computer and use it in GitHub Desktop.
Installation script for Symfony projects
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
clear | |
rm -rf var/cache/* | |
composer install | |
bin/console assets:install --ansi -n | |
php bin/console doctrine:schema:update --force --em=default | |
php bin/console assetic:dump --env=prod | |
HTTPDUSER=`ps aux | grep -E '[a]pache|[h]ttpd|[_]www|[w]ww-data|[n]ginx' | grep -v root | head -1 | cut -d\ -f1` | |
sudo setfacl -R -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/cache var/logs var/sessions | |
sudo setfacl -dR -m u:"$HTTPDUSER":rwX -m u:`whoami`:rwX var/cache var/logs var/sessions | |
chmod -R 755 web/uploads | |
chown -R "$HTTPDUSER":"$HTTPDUSER" web/uploads |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment