I have built a documentation website I’d like to access and sync (through a private git repo) with several local computers. Do you know what folders do I need to ignore in .gitignore to keep a “plug and play” setup? Do I need to uncomment the following folders?
assets/*
logs/*
images/*
user/data/*
Furthermore, do you know if it is safe to ignore node from the root .gitignore like this? Or should I rather add a .gitignore inside the /user/ folder so that I don’t accidentally remove important vendor folders?
**/dist/
**/node_modules/