Skip to content

Instantly share code, notes, and snippets.

@Veve2
Created September 16, 2016 09:04
Show Gist options
  • Save Veve2/c8837526abf4c79aa22cd7b551134d45 to your computer and use it in GitHub Desktop.
Save Veve2/c8837526abf4c79aa22cd7b551134d45 to your computer and use it in GitHub Desktop.
Installation script for Symfony projects
#!/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