Skip to content

Instantly share code, notes, and snippets.

@wwwbruno
Created August 18, 2014 12:23
Show Gist options
  • Select an option

  • Save wwwbruno/e124756aca60736940c8 to your computer and use it in GitHub Desktop.

Select an option

Save wwwbruno/e124756aca60736940c8 to your computer and use it in GitHub Desktop.
.gitignore file for Symfony2 Framework
# Cache, logs, sessions and spool
/app/cache/*
/app/logs/*
/app/sessions/*
/app/spool/*
!app/cache/.gitkeep
!app/logs/.gitkeep
!app/sessions/.gitkeep
!app/spool/.gitkeep
# Parameters
/app/config/parameters.yml
# Managed by Composer
/app/bootstrap.php.cache
/vendor/
# Managed by npm
/web/assets/node_modules/
# Backup files
*~
# Assets and user uploads
/web/bundles/
/web/uploads/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment