Skip to content
Snippets Groups Projects
Select Git revision
  • dance default protected
  • ecdh
  • 3.17.5-test.1+dance-0.1
3 results

.gitignore

Blame
  • .gitignore 481 B
    # hidden files
    .*
    
    # hidden files except .docker-compose
    !.docker-compose/
    
    # logs
    *.log
    
    # config files
    /*.toml
    
    # coverage file
    /coverage.out
    
    # builds
    /dist
    /build
    /static/logo
    /static/integrations
    /static/static
    /static/swagger/*.json
    /static/index.html
    /static/asset-manifest.json
    /static/service-worker.js
    /static/manifest.json
    /static/icon.png
    /static/precache-manifest.*.js
    /ui/build
    /docs/public
    
    # dependencies
    /vendor
    
    # certificates
    /certs
    
    # node modules
    node_modules