Browse Source

Merge branch 'master' into dev

refactoring
Guillaume Bourgeois 5 years ago
parent
commit
1d1deb7311
5 changed files with 14 additions and 1 deletions
  1. +2
    -1
      .gitignore
  2. +0
    -0
      backend/runtime/.gitignore
  3. +0
    -0
      backend/web/assets/.gitignore
  4. +0
    -0
      frontend/web/assets/.gitignore
  5. +12
    -0
      setPermissionsOpenDistrib.sh

+ 2
- 1
.gitignore View File

@@ -26,4 +26,5 @@ phpunit.phar
# local phpunit config
/phpunit.xml

/vendor/**/.git
/vendor/*
*/.git

+ 0
- 0
backend/runtime/.gitignore View File


+ 0
- 0
backend/web/assets/.gitignore View File


+ 0
- 0
frontend/web/assets/.gitignore View File


+ 12
- 0
setPermissionsOpenDistrib.sh View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
sudo chown fab:www-data frontend/runtime/ -R
chmod 775 frontend/runtime/

sudo chown fab:www-data frontend/web/assets/ -R
sudo chmod 775 frontend/web/assets/ -R

sudo chown fab:www-data backend/runtime/ -R
sudo chmod 775 backend/runtime/ -R

sudo chown fab:www-data backend/web/assets/ -R
sudo chmod 775 backend/web/assets/ -R

Loading…
Cancel
Save