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

     1  # Cache, temp and personal files
     2  
     3  /.htaccess
     4  *.log
     5  
     6  # Cache
     7  /cache/*
     8  !/cache/.htaccess
     9  !/cache/cachefs/index.php
    10  !/cache/deprecated.txt
    11  !/cache/index.php
    12  !/cache/purifier/index.php
    13  !/cache/push/activity
    14  !/cache/push/index.php
    15  !/cache/push/trends
    16  !/cache/sandbox/index.php
    17  !/cache/smarty/cache/index.php
    18  !/cache/smarty/compile/index.php
    19  !/cache/smarty/index.php
    20  !/cache/tcpdf/index.php
    21  
    22  # Download
    23  /download/*
    24  !/download/.htaccess
    25  !/download/index.php
    26  
    27  # Images
    28  /img/*
    29  !/img/.htaccess
    30  !/img/index.php
    31  !/img/404.gif
    32  !/img/bg_500.png
    33  !/img/bg_loader.png
    34  !/img/favicon.ico
    35  !/img/loader.gif
    36  !/img/loadingAnimation.gif
    37  !/img/logo.jpg
    38  !/img/logo.png
    39  !/img/logo_invoice.jpg
    40  !/img/logo_stores.png
    41  !/img/macFFBgHack.png
    42  !/img/prestashop-avatar.png
    43  !/img/prestashop@2x.png
    44  !/img/preston-login-wink@2x.png
    45  !/img/preston-login@2x.png
    46  !/img/questionmark.png
    47  !/img/genders/index.php
    48  !/img/admin/index.php
    49  !/img/c/index.php
    50  !/img/cms/index.php
    51  !/img/co/index.php
    52  !/img/jquery-ui
    53  !/img/l/index.php
    54  !/img/m/index.php
    55  !/img/os/index.php
    56  !/img/p/index.php
    57  !/img/s/index.php
    58  !/img/scenes
    59  !/img/st/index.php
    60  !/img/su/index.php
    61  !/img/t/index.php
    62  !/img/tmp/index.php
    63  
    64  # Upload
    65  /upload/*
    66  !/upload/.htaccess
    67  
    68  /vendor/*
    69  /docs/phpdoc-sf/
    70  /composer.lock
    71  *.hot-update.js
    72  *.hot-update.json
    73  
    74  
    75  /admin-dev/autoupgrade/*
    76  !/admin-dev/autoupgrade/index.php
    77  !/admin-dev/autoupgrade/backup/index.php
    78  
    79  /admin-dev/backups/*
    80  !/admin-dev/backups/.htaccess
    81  
    82  /admin-dev/import/*
    83  !/admin-dev/import/.htaccess
    84  !/admin-dev/import/index.php
    85  
    86  /admin-dev/export/*
    87  !/admin-dev/export/.htaccess
    88  !/admin-dev/export/index.php
    89  
    90  # Downloaded RTL files
    91  /admin-dev/themes/default/css/bundle/default_rtl.css
    92  /admin-dev/themes/default/css/bundle/shared_rtl.css
    93  /admin-dev/themes/default/css/font_rtl.css
    94  /admin-dev/themes/default/css/overrides_rtl.css
    95  /admin-dev/themes/default/css/vendor/font-awesome/font-awesome_rtl.css
    96  /admin-dev/themes/default/css/vendor/nv.d3_rtl.css
    97  /admin-dev/themes/default/css/vendor/titatoggle-min_rtl.css
    98  /admin-dev/themes/default/public/theme_rtl.css
    99  /admin-dev/themes/new-theme/css/module/drop_rtl.css
   100  /admin-dev/themes/new-theme/css/right-sidebar_rtl.css
   101  
   102  themes/*/cache/*
   103  
   104  # Config
   105  
   106  config/settings.inc.php
   107  config/settings.old.php
   108  config/xml/*
   109  config/themes/*
   110  !config/xml/themes/default.xml
   111  themes/*/config/settings_*.json
   112  app/config/parameters.old.yml
   113  app/config/config.php
   114  
   115  # Themes, modules and overrides
   116  
   117  modules/*
   118  override/*
   119  themes/*/
   120  !themes/classic
   121  !themes/_core
   122  !themes/_libraries
   123  
   124  # Vendors and dependencies
   125  
   126  bower_components/
   127  node_modules/
   128  composer.phar
   129  php-cs-fixer
   130  .grunt/*
   131  
   132  # Translations and emails templates
   133  
   134  translations/*
   135  mails/*
   136  !mails/themes/
   137  !mails/_partials/
   138  themes/default-bootstrap/lang/*
   139  themes/default-bootstrap/modules/*/translations/*.php
   140  themes/default-bootstrap/mails/*
   141  !themes/default-bootstrap/mails/en/
   142  themes/default-bootstrap/modules/*/mails/*
   143  !themes/default-bootstrap/modules/*/mails/en
   144  
   145  # MISC
   146  
   147  *sitemap.xml
   148  /robots.txt
   149  
   150  # Symfony
   151  
   152  /bin/
   153  /app/Resources/geoip/GeoLite2-City.mmdb
   154  /app/Resources/translations/*
   155  !/app/Resources/translations/default
   156  /app/config/parameters.yml
   157  /app/config/parameters.php
   158  /build/
   159  /phpunit.xml
   160  /var/*
   161  !/var/cache
   162  /var/cache/*
   163  !var/cache/.gitkeep
   164  !/var/logs
   165  /var/logs/*
   166  !var/logs/.gitkeep
   167  !/var/sessions
   168  /var/sessions/*
   169  !var/sessions/.gitkeep
   170  !var/SymfonyRequirements.php
   171  /vendor/
   172  /web/bundles/
   173