/ .gitignore
.gitignore
1 # local credentials 2 credentials.properties 3 4 # Vim 5 *.sw[op] 6 7 # Gradle 8 .gradle 9 build 10 11 # IDEA 12 .idea 13 !.idea/codeStyleSettings.xml 14 *.iml 15 *.iws 16 17 # Eclipse 18 .project 19 .classpath 20 .settings/ 21 bin 22 23 # Maven 24 log/ 25 target/ 26 27 # Output 28 database 29 logs 30 test_db 31 32 # Mac 33 .DS_Store 34 35 local.properties