github.com/1aal/kubeblocks@v0.0.0-20231107070852-e1c03e598921/.gitignore (about)

     1  # Mac OS X files
     2  .DS_Store
     3  
     4  # Binaries for programs and plugins
     5  *.exe
     6  *.exe~
     7  *.dll
     8  *.so
     9  *.dylib
    10  *.tar.gz
    11  **/*.tgz
    12  bin
    13  testbin/*
    14  __debug_bin
    15  
    16  output
    17  helm-output
    18  
    19  
    20  # Test binary, build with `go test -c`
    21  *.test
    22  
    23  # Output of the go coverage tool, specifically when used with LiteIDE
    24  *.out
    25  *.out.*
    26  cover.html
    27  .coverage/
    28  
    29  # Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
    30  .glide/
    31  
    32  # editor and IDE paraphernalia
    33  .vscode/
    34  .idea/
    35  .history/
    36  .run/
    37  .vimrc
    38  *.swp
    39  *.swo
    40  *~
    41  
    42  # Dependency directories (remove the comment below to include it)
    43  vendor/
    44  pkg/resources/static/k3s
    45  pkg/resources/static/k3d/
    46  
    47  # Distribution directories
    48  _dist/
    49  dist/
    50  bin/
    51  tmp/
    52  
    53  
    54  # helm dependency charts
    55  deploy/**/Chart.lock
    56  deploy/**/charts
    57  
    58  # cli embed chart directory
    59  pkg/cli/cluster/charts/
    60