Created
August 18, 2014 12:23
-
-
Save wwwbruno/e124756aca60736940c8 to your computer and use it in GitHub Desktop.
.gitignore file for Symfony2 Framework
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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