diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9d23b92 --- /dev/null +++ b/.gitignore @@ -0,0 +1,65 @@ +# Config and Htaccess Files +/public/.htaccess +/public/config.php +/public/admin/config.php + +# Image File +!/public/image/no_image.jpg + +# Image Cache Files +/public/image/cache/* +!/public/image/cache/index.html + +# Templates Files +/public/image/templates/* +/public/image/templates/default.jpg + +# Backup Files +/public/system/storage/backup/* +!/public/system/storage/backup/index.html + +# System Cache Files +/public/system/storage/cache/* +!/public/system/storage/cache/index.html + +# Download Files +/public/system/storage/download/* +!/public/system/storage/download/index.html + +# Log Files +/public/system/storage/logs/* +!/public/system/storage/logs/index.html + +# Marketing Files +/public/system/storage/marketing/* +!/public/system/storage/marketing/index.html + +# Modification Files +/public/system/storage/modification/* +!/public/system/storage/modification/index.html + +# Session Files +/public/system/storage/session/* +!/public/system/storage/session/index.html + +# Public Files +/public/system/storage/public/* +!/public/system/storage/public/index.html + +# Flags +# remove sharp char if you want to add flags to gitignore +# /public/flags/* + +# If you want to ignore install file use following lines [on development mode] +# /public/backup.install/* +# /public/install/* + +/tests/phpunit/vendor/* +/tests/phpunit/composer.lock +/tests/phpunit/bootstrap.php + +# IDE Project files +/.idea +/public/.idea + +/storage/ |