-
-
Notifications
You must be signed in to change notification settings - Fork 254
/
.gitignore
103 lines (88 loc) · 2.16 KB
/
.gitignore
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# Eclipse folders and files
.cache*
.project
.settings*
.buildpath
# PhpStorm/IntelliJ folder
.idea*
.run/*
# Mac OS X crap
.DS_Store
# Builds
build/*
# Docker persistent data
volumes/*
# phpMyFAQ content folders
phpmyfaq/content/core/config/database.php
phpmyfaq/content/core/config/database.bak.php
phpmyfaq/content/core/config/ldap.php
phpmyfaq/content/core/config/ldap.bak.php
phpmyfaq/content/core/config/elasticsearch.php
phpmyfaq/content/core/config/elasticsearch.bak.php
phpmyfaq/content/core/config/azure.php
phpmyfaq/content/core/config/azure.bak.php
phpmyfaq/content/core/config/index.html
phpmyfaq/content/core/data/*
!phpmyfaq/content/core/data/.gitkeep
phpmyfaq/content/core/logs/*
!phpmyfaq/content/core/logs/.gitkeep
phpmyfaq/content/upgrades/*
!phpmyfaq/content/upgrades/.gitkeep
phpmyfaq/content/user/images/*
!phpmyfaq/content/user/images/.gitkeep
phpmyfaq/content/user/attachments/*
!phpmyfaq/content/user/attachments/.gitkeep
# Legacy config folders
phpmyfaq/config/database.php
phpmyfaq/config/database.bak.php
phpmyfaq/config/ldap.php
phpmyfaq/config/ldap.bak.php
phpmyfaq/config/elasticsearch.php
phpmyfaq/config/elasticsearch.bak.php
phpmyfaq/config/azure.php
phpmyfaq/config/azure.bak.php
phpmyfaq/config/index.html
phpmyfaq/data/*
phpmyfaq/logs/*
phpmyfaq/images/*
phpmyfaq/attachments/*
# Third party PHP libraries
phpmyfaq/src/libs
# Third party frontend libraries and generated JS/CSS
phpmyfaq/admin/assets/css
phpmyfaq/admin/assets/fonts
phpmyfaq/admin/assets/js/editor/*
phpmyfaq/assets/dist
phpmyfaq/assets/js/libs
phpmyfaq/assets/svg/*.svg
!phpmyfaq/assets/templates/admin
!phpmyfaq/assets/templates/default
!phpmyfaq/assets/templates/setup
# Twig caches
phpmyfaq/admin/assets/cache/
# Node.js modules for development
node_modules/*
.pnpm-store
# Backup folder
backup/*
# PHPUnit
.phpunit.cache
coverage.txt
html-coverage/
tests/logs
tests/test.db
tests/test.db-journal
tests/content/core/config/database.php
tests/content/core/config/ldap.php
tests/content/upgrades
tests/fixtures/path-to-delete/foo.bar.baz
# Jest related stuff
coverage/*
# PHPMD
phpmd.html
# Netbeans project folder
nbproject/
/test-results/
/playwright-report/
/blob-report/
/playwright/.cache/