Skip to content
Snippets Groups Projects
Select Git revision
  • 5e8def86a945d9767a1cae9301cc19b3a2693149
  • master default protected
  • release_3.0.0
  • test
  • feature_pre_sql
  • develop
  • 3.0.1
  • 3.0.0
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
26 results

database.local.php.dist

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    install.sh 1002 B
    #!/usr/bin/env bash
    
    #
    # This script runs required operations in order to set up the application.
    #
    
    # Composer install
    composer install --no-dev --no-suggest --optimize-autoloader
    
    # mpdf/mpdf/ttfontdata dir access
    #chown -R www-data:root vendor/mpdf/mpdf/ttfontdata && chmod -R 770 vendor/mpdf/mpdf/ttfontdata
    
    # Répertoire d'upload par défaut
    #mkdir -p upload && chown -R www-data:root upload && chmod -R 770 upload
    
    # Répertoires de travail de Doctrine
    mkdir -p data/cache                   && chmod -R 777 data/cache
    mkdir -p data/DoctrineModule/cache    && chmod -R 777 data/DoctrineModule/cache
    mkdir -p data/DoctrineORMModule/Proxy && chmod -R 777 data/DoctrineORMModule/Proxy
    rm -rf data/cache/*
    rm -rf data/DoctrineModule/cache/*
    rm -rf data/DoctrineORMModule/Proxy/*
    
    # Commandes Doctrine
    vendor/bin/doctrine-module orm:clear-cache:query
    vendor/bin/doctrine-module orm:clear-cache:metadata
    vendor/bin/doctrine-module orm:clear-cache:result
    vendor/bin/doctrine-module orm:generate-proxies