Skip to content

Commit c973f92

Browse files
committed
Initial commit
0 parents  commit c973f92

File tree

3 files changed

+717
-0
lines changed

3 files changed

+717
-0
lines changed

Diff for: .gitignore

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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+
# Parameters
19+
/app/config/parameters.yml
20+
/app/config/parameters.ini
21+
22+
# Managed by Composer
23+
/app/bootstrap.php.cache
24+
/var/bootstrap.php.cache
25+
/bin/*
26+
!bin/console
27+
!bin/symfony_requirements
28+
29+
# Assets and user uploads
30+
/web/bundles/
31+
/web/uploads/
32+
33+
# PHPUnit
34+
/app/phpunit.xml
35+
/phpunit.xml
36+
37+
# Build data
38+
/build/
39+
40+
# Backup entities generated with doctrine:generate:entities command
41+
**/Entity/*~

0 commit comments

Comments
 (0)