-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·42 lines (37 loc) · 856 Bytes
/
.gitignore
File metadata and controls
executable file
·42 lines (37 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Ignore various IDE, OS or Hosting specific files
.idea/
.buildpath
.project
.settings/
nbproject/
web.config
.DS_Store
.qicon
.vscode
/public/usage
# Ignore php and txt files beginning with test in root and public directory
/test*.php
/test*.txt
/public/test*.php
/public/test*.txt
# Ignore backups (except bootstrap.sql)
/_backups/*
!/_backups/bootstrap.sql
# MODX CMS
/private/config/*
!/private/config/*.example.php
/private/cache/
/private/packages/*/
/private/logs/*
!/private/logs/README.md
/public/setup/
# Vagrant / Virtual Machine
.vagrant
/_server/tmp/
/public/assets/templates/*/.livereload
# We don't need all puppet modules in our repository, we just need our custom
# gitify module. All others will be downloaded and installed by the puppet.sh script
/_server/puppet/modules/*
!/_server/puppet/modules/gitify/
# keep gitkeep
!.gitkeep