Should .meteor folder be gitignored?

Hi,

I know node_modules should not be push to the git repo.
How about .meteor folder?
On a meteor app which files should be gitignored?

Regards,

No it should not be included in your .gitignore, but .meteor/local should be ignored.

But you shouldn’t need to manually do that. The .meteor folder should get it’s own .gitignore file created within when Meteor created your project.

My .meteor/.gitignore contains:

dev_bundle
local
5 Likes

Yes, thanks a lot man.