forked from VTECRM/vtenext
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.gitignore
141 lines (112 loc) · 3.52 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
### VSCode ###
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
# Local History for Visual Studio Code
.history/
### phpStorm / IDEA ###
.idea
.idea/*
.env
### macOS ###
# General
.DS_Store
.AppleDouble
.LSOverride
# Thumbnails
._*
# MACOS Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Windows thumbnail cache files
Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db
# ************ PERSONAL FILES ***************
my_notes
# ************ VTENEXT PROJECT SPECIFIC ***************
### Temp Files starting with _###
**/_*
### composer modules only on root###
/vendor/
### nodejs modules###
node_modules
### cache dirs ###
/web/cache/*
!/web/cache/index.html
!/web/cache/processmaker.tmp
!/web/cache/*/index.html
!/web/cache/*/.htaccess
### smartoptimizer cache dirs ###
/web/smartoptimizer/cache/*
!/web/smartoptimizer/cache/index.html
/web/Smarty/cache/*
!/web/Smarty/cache/index.html
### other cache dirs ###
.sass-cache
### storage dirs ###
/web/storage
!/web/storage/custom_modules/index.html
!/web/storage/images_uploaded/index.html
!/web/storage/logo/*
!/web/storage/signatures/index.html
!/web/storage/touch_uploads/index.html
!/web/storage/.htaccess
!/web/storage/get.php
!/web/storage/index.html
!/web/storage/vtenext.txt
### logs ###
/web/logs/*
!/web/logs/.htaccess
/web/.htaccess
# NOTE: deleted files during installation should all be assumed unchanged using
# for i in `git status | grep deleted | awk '{print $2}'`; do git update-index --assume-unchanged $i; done
#web/cache/vtlib/HTML/README.txt
#web/htaccess.txt
#
#commited /web/htaccess.txt file will remove the file only from dev branch. It should be tracked in version control but not deleted from master branch.
# THOSE FILES ARE CREATED DURING INSTALLATION AND/OR NORMAL OPERATIONS
# THEY SHOULD NOT GO IN VERSION CONTROL TO AVOID PUSHING TO REMOTES
# ONCE COMPLETED DEBUGGING OF INSTALL MODULE REMEMBER TO UNCOMMENT THOSE BEFORE MERGING WITH OTHER BRANCHES
# if you want to roll back to a state prior to install i.e. clean original source state - delete the folders below
# RENAMED INSTALLATION FOLDER DURING INSTALLATION AND CREATED FILE
/web/*install/
/web/*install.php.txt
# installed manifest and schema - those are created based on manifest.xml for each module
/web/modules/*/manifest.xml.installed
/web/modules/*/schema.xml
# Optional Modules - created during installation if user selected
/web/modules/CustomerPortal
/web/modules/RecycleBin
/web/Smarty/templates/modules/CustomerPortal
/web/Smarty/templates/modules/RecycleBin
# created during installation - looks like it is a core module automatically created folder during install
/web/modules/ModLightProdAttr
# specific files are created during installation
/web/modules/Campaigns/ProcessBounces.config.php
/web/modules/SLA/SLA.config.php
# User permissions cache files created during installation
/web/user_privileges/sharing_privileges_1.php
/web/user_privileges/user_privileges_1.php
# CACHE folder created during installation
/web/cache/sys/cacheResources.json
/web/cache/sys/vteCacheHV.json
/web/cache/vtlib/HTML/*.ser
# Smarty tempalte compilation folder files - generated automatially during operation
/web/Smarty/templates_c/*.php
# development configuration
/web/include/utils/VTEProperties_dev.php
# exclude node-red from version control except settings
/node-red/
!/node-red/settings.js
!/node-red/package.json