forked from directus/v8-archive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
71 lines (56 loc) · 1.28 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
Icon
.DS_Store
*.log
.cache
.vscode
.ddev
# Ignore dev files
/.idea
node_modules
yarn.lock
package-lock.json
/nbproject/
/tests/api/tmp/
# Don't track composer phar/vendors
composer.phar
composer.lock
/vendor
# Exclude env vars and custom deployment scripts
.env
deploy.*
# Ignore configuration files
/config/*
!/config/_example.php
# PHPUnit
/phpunit.xml
/documents
# Core extensions
/public/extensions/core/interfaces
/public/extensions/core/layouts
/public/extensions/core/pages
# Custom extensions
/public/extensions/custom/*/*
## Auth
/public/extensions/custom/auth
## Endpoints
!/public/extensions/custom/endpoints/_directory/
!/public/extensions/custom/endpoints/_example.php
## Hashers
!/public/extensions/custom/hashers/_CustomHasher.php
## Hooks
!/public/extensions/custom/hooks/_products
!/public/extensions/custom/hooks/_webhook
# Storage
/public/uploads/*/
!public/uploads/_/originals/.gitignore
!public/uploads/_/thumbnails/.gitignore
# Keep gitkeep files
# This will make sure empty directories has at least one file so it can be tracked by git
!**/.gitkeep
/docs/
#Override the PHP internal server rules for static files
#See https://github.com/slimphp/Slim/issues/1829
#php -S localhost:8000 cliserver.php
public/cliserver.php
# Cache generated while filesystem adapter
/cache/*