forked from omeka/Omeka
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
49 lines (37 loc) · 638 Bytes
/
.gitignore
File metadata and controls
49 lines (37 loc) · 638 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
43
44
45
46
47
48
49
# Root .htaccess
/.htaccess
# php-cs-fixer cache
/.php_cs.cache
# dist directory
/dist/
# Composer vendor directory
/vendor/
# Composer lockfile
/composer.lock
# Config files
/db.ini
/application/config/config.ini
/application/tests/config.ini
# Log files
/application/logs/errors.log
/application/logs/processes.log
/application/tests/log.xml
# Test files
/application/tests/_files/temp/
# Plugins and themes
/plugins/
/themes/
# Files
/files/original/*
/files/fullsize/*
/files/square_thumbnails/*
/files/theme_uploads/*
/files/thumbnails/*
# For macs
.DS_Store
# For VIM
.*.sw*
# For Eclipse
.buildpath
.project
.settings/