website/.gitignore

69 lines
1.1 KiB
Plaintext
Raw Permalink Normal View History

2015-08-30 12:31:07 -04:00
# 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
2016-11-18 11:39:31 -05:00
# Application mode #
####################
# webiste mode settings
mode.php
2016-04-20 23:32:25 -04:00
# Vendor packages #
###################
# we don't need to sync these everywhere
vendor/
# Audio and video files #
#########################
# we really shouldn't track these with git
public/audio/
public/video/
2015-08-30 12:31:07 -04:00
# 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
2016-04-20 23:32:25 -04:00
Thumbs.db