├── docs
├── content
│ ├── faq
│ │ └── _index.md
│ ├── contact
│ │ ├── _index.md
│ │ └── index.md
│ ├── design
│ │ ├── _index.md
│ │ └── index.md
│ ├── resources
│ │ ├── _index.md
│ │ └── index.md
│ ├── get-started
│ │ └── _index.md
│ ├── projects-using-badger
│ │ ├── _index.md
│ │ └── index.md
│ └── _index.md
├── .gitignore
├── themes
│ ├── hugo-docs
│ │ ├── layouts
│ │ │ ├── _default
│ │ │ │ ├── list.html
│ │ │ │ ├── section.html
│ │ │ │ └── article.html
│ │ │ ├── .gitignore
│ │ │ ├── shortcodes
│ │ │ │ ├── version.html
│ │ │ │ ├── load-img.html
│ │ │ │ └── notice.html
│ │ │ ├── partials
│ │ │ │ ├── meta.html
│ │ │ │ ├── suggest-edit.html
│ │ │ │ ├── request-edit.html
│ │ │ │ ├── topbar.html
│ │ │ │ ├── sidebar.html
│ │ │ │ ├── footer.html
│ │ │ │ └── header.html
│ │ │ ├── index.html
│ │ │ └── 404.html
│ │ ├── static
│ │ │ ├── json
│ │ │ │ └── search.json
│ │ │ ├── images
│ │ │ │ ├── badger.png
│ │ │ │ ├── gopher-404.jpg
│ │ │ │ ├── dgraph-black.png
│ │ │ │ ├── diggy-shadow.png
│ │ │ │ ├── favicons
│ │ │ │ │ ├── favicon.ico
│ │ │ │ │ ├── favicon-16x16.png
│ │ │ │ │ ├── favicon-32x32.png
│ │ │ │ │ ├── favicon-96x96.png
│ │ │ │ │ ├── apple-touch-icon.png
│ │ │ │ │ ├── favicon-194x194.png
│ │ │ │ │ ├── android-chrome-36x36.png
│ │ │ │ │ ├── android-chrome-48x48.png
│ │ │ │ │ ├── android-chrome-72x72.png
│ │ │ │ │ ├── android-chrome-96x96.png
│ │ │ │ │ ├── android-chrome-144x144.png
│ │ │ │ │ ├── android-chrome-192x192.png
│ │ │ │ │ ├── apple-touch-icon-114x114.png
│ │ │ │ │ ├── apple-touch-icon-120x120.png
│ │ │ │ │ ├── apple-touch-icon-144x144.png
│ │ │ │ │ ├── apple-touch-icon-152x152.png
│ │ │ │ │ ├── apple-touch-icon-180x180.png
│ │ │ │ │ ├── apple-touch-icon-57x57.png
│ │ │ │ │ ├── apple-touch-icon-60x60.png
│ │ │ │ │ ├── apple-touch-icon-72x72.png
│ │ │ │ │ ├── apple-touch-icon-76x76.png
│ │ │ │ │ ├── manifest.json
│ │ │ │ │ └── safari-pinned-tab.svg
│ │ │ │ └── Screenshot from 2020-07-07 19-14-26.png
│ │ │ └── fonts
│ │ │ │ ├── FontAwesome.otf
│ │ │ │ ├── Inconsolata.eot
│ │ │ │ ├── Inconsolata.ttf
│ │ │ │ ├── Inconsolata.woff
│ │ │ │ ├── Work_Sans_200.eot
│ │ │ │ ├── Work_Sans_200.ttf
│ │ │ │ ├── Work_Sans_200.woff
│ │ │ │ ├── Work_Sans_300.eot
│ │ │ │ ├── Work_Sans_300.ttf
│ │ │ │ ├── Work_Sans_300.woff
│ │ │ │ ├── Work_Sans_500.eot
│ │ │ │ ├── Work_Sans_500.ttf
│ │ │ │ ├── Work_Sans_500.woff
│ │ │ │ ├── Work_Sans_200.woff2
│ │ │ │ ├── Work_Sans_300.woff2
│ │ │ │ ├── Work_Sans_500.woff2
│ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ ├── fontawesome-webfont.woff2
│ │ │ │ ├── Novecentosanswide-Normal-webfont.eot
│ │ │ │ ├── Novecentosanswide-Normal-webfont.ttf
│ │ │ │ ├── Novecentosanswide-Normal-webfont.woff
│ │ │ │ ├── Novecentosanswide-Normal-webfont.woff2
│ │ │ │ ├── Novecentosanswide-UltraLight-webfont.eot
│ │ │ │ ├── Novecentosanswide-UltraLight-webfont.ttf
│ │ │ │ ├── Novecentosanswide-UltraLight-webfont.woff
│ │ │ │ └── Novecentosanswide-UltraLight-webfont.woff2
│ │ ├── images
│ │ │ ├── tn.png
│ │ │ └── screenshot.png
│ │ ├── archetypes
│ │ │ └── default.md
│ │ ├── theme.toml
│ │ └── LICENSE.md
│ └── .DS_Store
├── static
│ └── images
│ │ └── diggy-shadow.png
├── archetypes
│ └── default.md
├── README.md
├── config.toml
└── scripts
│ ├── local.sh
│ └── build.sh
├── badger
├── .gitignore
├── cmd
│ ├── bench.go
│ ├── root.go
│ ├── flatten.go
│ ├── rotate.go
│ ├── backup.go
│ ├── restore.go
│ ├── stream.go
│ └── rotate_test.go
└── main.go
├── .gitignore
├── integration
└── testgc
│ └── .gitignore
├── images
├── diggy-shadow.png
└── benchmarks-rocksdb.png
├── CODE_OF_CONDUCT.md
├── .github
├── ISSUE_TEMPLATE
├── CODEOWNERS
├── workflows
│ └── main.yml
└── stale.yml
├── pb
├── gen.sh
└── badgerpb2.proto
├── .deepsource.toml
├── fb
├── gen.sh
├── flatbuffer.fbs
├── install_flatbuffers.sh
├── BlockOffset.go
└── TableIndex.go
├── .golangci.yml
├── changes.sh
├── y
├── file_nodsync.go
├── file_dsync.go
├── event_log.go
├── zstd_nocgo.go
├── zstd_cgo.go
├── checksum.go
├── encrypt.go
├── iterator.go
├── error.go
├── metrics.go
├── bloom_test.go
└── bloom.go
├── go.mod
├── test.sh
├── doc.go
├── appveyor.yml
├── discard_test.go
├── logger_test.go
├── trie
├── trie_test.go
└── trie.go
├── options
└── options.go
├── VERSIONING.md
├── .travis.yml
├── logger.go
├── publisher_test.go
├── CONTRIBUTING.md
├── managed_db.go
├── util.go
├── histogram_test.go
├── table
└── README.md
├── dir_unix.go
├── dir_windows.go
├── publisher.go
├── skl
├── arena.go
└── README.md
├── discard.go
├── batch_test.go
├── merge_test.go
├── key_registry_test.go
└── dir_plan9.go
/docs/content/faq/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/badger/.gitignore:
--------------------------------------------------------------------------------
1 | /badger
2 |
--------------------------------------------------------------------------------
/docs/.gitignore:
--------------------------------------------------------------------------------
1 | /public
2 |
3 |
--------------------------------------------------------------------------------
/docs/content/contact/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/content/design/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/content/resources/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | p/
2 | badger-test*/
3 |
--------------------------------------------------------------------------------
/docs/content/get-started/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/integration/testgc/.gitignore:
--------------------------------------------------------------------------------
1 | /testgc
2 |
--------------------------------------------------------------------------------
/docs/content/projects-using-badger/_index.md:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/_default/list.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/json/search.json:
--------------------------------------------------------------------------------
1 | []
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/.gitignore:
--------------------------------------------------------------------------------
1 | /hugo-docs
2 |
3 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/shortcodes/version.html:
--------------------------------------------------------------------------------
1 | {{ getenv "CURRENT_VERSION" }}
--------------------------------------------------------------------------------
/docs/themes/.DS_Store:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/.DS_Store
--------------------------------------------------------------------------------
/images/diggy-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/images/diggy-shadow.png
--------------------------------------------------------------------------------
/images/benchmarks-rocksdb.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/images/benchmarks-rocksdb.png
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Code of Conduct
2 |
3 | Our Code of Conduct can be found here:
4 |
5 | https://dgraph.io/conduct
6 |
--------------------------------------------------------------------------------
/docs/static/images/diggy-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/static/images/diggy-shadow.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/images/tn.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/images/tn.png
--------------------------------------------------------------------------------
/docs/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "{{ replace .Name "-" " " | title }}"
3 | date: {{ .Date }}
4 | draft: true
5 | ---
6 |
7 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/images/screenshot.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/images/screenshot.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/badger.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/badger.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/FontAwesome.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/FontAwesome.otf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Inconsolata.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Inconsolata.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Inconsolata.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Inconsolata.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/gopher-404.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/gopher-404.jpg
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Inconsolata.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Inconsolata.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_200.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_200.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_200.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_200.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_200.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_200.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_300.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_300.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_300.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_300.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_300.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_300.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_500.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_500.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_500.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_500.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_500.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_500.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/dgraph-black.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/dgraph-black.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/diggy-shadow.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/diggy-shadow.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_200.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_200.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_300.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_300.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Work_Sans_500.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Work_Sans_500.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/favicon.ico
--------------------------------------------------------------------------------
/.github/ISSUE_TEMPLATE:
--------------------------------------------------------------------------------
1 | **GitHub Issues are deprecated. Use [Discuss Issues](https://discuss.dgraph.io/c/issues/badger/37) for reporting issues about this repository.**
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/shortcodes/load-img.html:
--------------------------------------------------------------------------------
1 | {{ $url := .Get 0}}
2 | {{ $alt := .Get 1}}
3 |
4 |
5 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/fontawesome-webfont.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/favicon-16x16.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/favicon-32x32.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/favicon-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/favicon-96x96.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/favicon-194x194.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/favicon-194x194.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/archetypes/default.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Some Title"
3 | weight: 5
4 | prev: /prev/path
5 | next: /next/path
6 | toc: true
7 | ---
8 |
9 | Lorem Ipsum
10 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/partials/meta.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-36x36.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-36x36.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-48x48.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-48x48.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-72x72.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-96x96.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-96x96.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-Normal-webfont.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-144x144.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/android-chrome-192x192.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-114x114.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-114x114.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-120x120.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-120x120.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-144x144.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-144x144.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-152x152.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-152x152.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-180x180.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-180x180.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-57x57.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-57x57.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-60x60.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-60x60.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-72x72.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-72x72.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-76x76.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/favicons/apple-touch-icon-76x76.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.eot
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.ttf
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/images/Screenshot from 2020-07-07 19-14-26.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/images/Screenshot from 2020-07-07 19-14-26.png
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.woff
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/elastic/badger/master/docs/themes/hugo-docs/static/fonts/Novecentosanswide-UltraLight-webfont.woff2
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/_default/section.html:
--------------------------------------------------------------------------------
1 | {{ partial "header.html" . }}
2 |
3 | {{ range .Data.Pages.ByWeight }}
4 | {{ .Render "article" }}
5 | {{ end }}
6 |
7 | {{ partial "footer.html" . }}
8 |
--------------------------------------------------------------------------------
/.github/CODEOWNERS:
--------------------------------------------------------------------------------
1 | # CODEOWNERS info: https://help.github.com/en/articles/about-code-owners
2 | # Owners are automatically requested for review for PRs that changes code
3 | # that they own.
4 | * @manishrjain @ashish-goswami @jarifibrahim
5 |
--------------------------------------------------------------------------------
/docs/themes/hugo-docs/layouts/shortcodes/notice.html:
--------------------------------------------------------------------------------
1 | {{ $type := .Get 0}}
2 |
3 |