-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
65 lines (47 loc) · 1.09 KB
/
.gitignore
File metadata and controls
65 lines (47 loc) · 1.09 KB
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
# Ignore vendor directory
/vendor
# Ignore .env file containing sensitive information
.env
# Ignore .env.* files generated by Laravel
.env.*
# Ignore any logs
/storage/*.log
# Ignore node_modules directory
/node_modules
# Ignore npm-debug.log file
npm-debug.log
# Ignore public/hot directory used for Laravel Mix
/public/hot
# Ignore .phpunit.result.cache file
.phpunit.result.cache
# Ignore .idea directory created by PhpStorm
.idea
# Ignore Homestead.yaml and Homestead.yaml.example
Homestead.yaml
Homestead.yaml.example
# Ignore code quality tools' directories
/.phpstorm.meta.php
/.phpstorm.meta.php.new
# Ignore VSCode settings directory
.vscode
# Ignore .DS_Store files on macOS
.DS_Store
# Ignore the local environment file
/.env.local
# Ignore Homestead IP file
Homestead.json
# Ignore Windows system files
Thumbs.db
ehthumbs.db
# Ignore files generated by the PHPStorm editor
.phpstorm.meta.php
# Ignore Heroku configuration file
heroku.yml
# Ignore Symfony and Laravel generated directories
/var
/node
/public/storage
/storage/framework
/public/mix-manifest.json
/public/css
/public/js