What should I put in a meteor .gitignore file?

后端 未结 15 981
一向
一向 2021-01-30 19:14

I have a new meteor project. I\'m guessing the .meteor dir has a combination of configuration files (needed) and temporary files (not needed).

So what\'s i

15条回答
  •  野的像风
    2021-01-30 19:56

    ### MeteorJS ###
    # default meteor build and local packages
    .meteor/local
    
    # meteor settings file
    settings.json
    
    # meteor build output files
    *.tar.gz
    
    # general swp files from vim
    *.swp
    
    # End of https://www.gitignore.io/api/meteorjs
    

提交回复
热议问题