Added .gitignore to project
This commit is contained in:
parent
ebc2f18f71
commit
b0ebf0df74
52
.gitignore
vendored
Executable file
52
.gitignore
vendored
Executable file
@ -0,0 +1,52 @@
|
||||
# Application configs #
|
||||
####################
|
||||
# these are just so that database credentials are not exposed
|
||||
# over Github. You can follow config/example.php for how to use
|
||||
# the configuration file.
|
||||
app/config/production.php
|
||||
app/config/development.php
|
||||
|
||||
# Dot Files #
|
||||
#############
|
||||
# the gitignore bit is so that .gitignore is still committed if
|
||||
# it isn't already
|
||||
.*
|
||||
!/.gitignore
|
||||
|
||||
# Compiled source #
|
||||
###################
|
||||
*.com
|
||||
*.class
|
||||
*.dll
|
||||
*.exe
|
||||
*.o
|
||||
*.so
|
||||
|
||||
# Packages #
|
||||
############
|
||||
# it's better to unpack these files and commit the raw source
|
||||
# git has its own built in compression methods
|
||||
*.7z
|
||||
*.dmg
|
||||
*.gz
|
||||
*.iso
|
||||
*.jar
|
||||
*.rar
|
||||
*.tar
|
||||
*.zip
|
||||
|
||||
# Logs and databases #
|
||||
######################
|
||||
*.log
|
||||
*.sql
|
||||
*.sqlite
|
||||
|
||||
# OS generated files #
|
||||
######################
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
Loading…
Reference in New Issue
Block a user