Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted July 28, 20222 yr Hi, I'm preparing to update our InVision software. We use an internal Gitlab instance for SCM, and I'd like to put the core files in there before running the update to manage versions. However, I can't find any documentation on or any default .gitignore files. Does anyone have a recommended .gitignore file? Or know what folders/files are considered "core"? I would assume as a starting point anything in /cache and /uploads can be ignored. Any help would be much appreciated. Thanks.
July 28, 20222 yr Community Expert Solution Hi, this is the file which the developers at IPS use conf_global.php datastore/*.php uploads/logs/*.php uploads/* plugins/hooks.txt constants.php plugins/hooks.php .DS_Store I hope it helps:)
July 29, 20222 yr Author In case anyone else stumbles upon this, I added a few extra folders but it's essentially the same: .idea/ .vscode/ .well-known/ cache/ cgi-bin/ uploads/*/ datastore/*.php plugins/hooks.txt plugins/hooks.php .DS_Store conf_global.php constants.php
August 7, 20222 yr Hi, this is the file which the developers at IPS use I hope it helps:) Nitpicking... but wouldn't uploads/logs/*.php be covered by uploads/*, so the former one is superfluous?