What should I put in a meteor .gitignore file?

后端 未结 15 1003
一向
一向 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:43

    We use this gitignore, which englobes many IDEs and Meteor, along system files and others.

    ### WebStorm ###
    .idea/
    
    ### OSX ###
    .DS_Store
    .AppleDouble
    .LSOverride
    # Icon must end with two \r
    Icon
    # Thumbnails
    ._*
    # Files that might appear on external disk
    .Spotlight-V100
    .Trashes
    # Directories potentially created on remote AFP share
    .AppleDB
    .AppleDesktop
    Network Trash Folder
    Temporary Items
    .apdisk
    
    ### Windows ###
    # Windows image file caches
    Thumbs.db
    ehthumbs.db
    # Folder config file
    Desktop.ini
    # Recycle Bin used on file shares
    $RECYCLE.BIN/
    # Windows shortcuts
    *.lnk
    
    ### Linux ###
    *~
    # KDE directory preferences
    .directory
    
    ### SublimeText ###
    # cache files for sublime text
    *.tmlanguage.cache
    *.tmPreferences.cache
    *.stTheme.cache
    # workspace files are user-specific
    *.sublime-workspace
    # project files should be checked into the repository, unless a significant
    # proportion of contributors will probably not be using SublimeText
    # *.sublime-project
    # sftp configuration file
    sftp-config.json
    
    ### Node/NPM ###
    node_modules
    npm-debug.log
    
    ### Development ###
    dump
    mochawesome-reports
    ngrok
    

提交回复
热议问题