code.gitea.io/gitea@v1.21.7/options/gitignore/Symfony (about)

     1  # Cache and logs (Symfony2)
     2  /app/cache/*
     3  /app/logs/*
     4  !app/cache/.gitkeep
     5  !app/logs/.gitkeep
     6  
     7  # Email spool folder
     8  /app/spool/*
     9  
    10  # Cache, session files and logs (Symfony3)
    11  /var/cache/*
    12  /var/logs/*
    13  /var/sessions/*
    14  !var/cache/.gitkeep
    15  !var/logs/.gitkeep
    16  !var/sessions/.gitkeep
    17  
    18  # Logs (Symfony4)
    19  /var/log/*
    20  !var/log/.gitkeep
    21  
    22  # Parameters
    23  /app/config/parameters.yml
    24  /app/config/parameters.ini
    25  
    26  # Managed by Composer
    27  /app/bootstrap.php.cache
    28  /var/bootstrap.php.cache
    29  /bin/*
    30  !bin/console
    31  !bin/symfony_requirements
    32  /vendor/
    33  
    34  # Assets and user uploads
    35  /web/bundles/
    36  /web/uploads/
    37  
    38  # PHPUnit
    39  /app/phpunit.xml
    40  /phpunit.xml
    41  
    42  # Build data
    43  /build/
    44  
    45  # Composer PHAR
    46  /composer.phar
    47  
    48  # Backup entities generated with doctrine:generate:entities command
    49  **/Entity/*~
    50  
    51  # Embedded web-server pid file
    52  /.web-server-pid