-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy path.gitignore
executable file
·80 lines (66 loc) · 1.36 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
# Project/IDE files
.DS_Store
nbproject/
.idea/*
.vagrant/*
node_modules
Homestead.json
Homestead.yaml
*.iml
npm-debug.log
yarn-error.log
*.iml
vendor/*
.composer/*
# Application env files - do not commit
.env.prod
.env.local
.env.dev
.env.testing
.env
# Laravel Storage
storage/*.index
storage/*.key
# Laravel Storage App
!storage/app/public/.gitignore
!storage/app/images/.gitignore
# Laravel Storage Framework
storage/framework/cache/data/
# Laravel Storage Logs
!storage/logs/.gitignore
# the symbolical links
public/images
public/widgets
# Do not commit testing files
database/seeds/dumps/*
tests/resources/*
.phpunit.result.cache
# Elastic Beanstalk Files and Deployment Files
.elasticbeanstalk/*
!.elasticbeanstalk/*.cfg.yml
!.elasticbeanstalk/*.global.yml
deploy.md
deploy.sh
deploy_master.sh
.deploy_version
.ebignore
.platform/*
.ebextensions/*
laravel.conf
static.conf
https.conf
composer.lock
# Ignore anything in the custom tag directory
app/Tags/Custom/*
# Except the example custom tags
!app/Tags/Custom/GooglesearchTag.php
!app/Tags/Custom/HelloworldTag.php
# Ignore anything in the customtag config directory
config/customtags/*
# Except the example custom tag config
!config/customtags/hellowworld.php
# Ignore anything in the customtag config directory
resources/widgets/custom/*
!resources/widgets/custom/.gitkeep
# Ignore anything folder
_notforcommit/*