Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rjeczalik/bigstruct
https://github.com/rjeczalik/bigstruct
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/rjeczalik/bigstruct
- Owner: rjeczalik
- License: apache-2.0
- Created: 2020-10-21T01:09:49.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-04-29T06:21:41.000Z (over 3 years ago)
- Last Synced: 2024-06-20T09:13:53.956Z (6 months ago)
- Language: Go
- Size: 494 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# bigstruct
`bigstruct` stores all your structured data in a format agnostic way. It provides out-of-the-box support for the following file formats:
- ini/toml configuration files
- yaml/json documents
- hcl/hcl+json templatesEvery file is transformed into Intermediate Struct Representation (the `bigstruct/isr` package) and persisted as a list of key-value pairs in a database of your choice, either SQL or NoSQL.
The following backends are supported:
- ScyllaDB
- MySQL, sqlite, PostgreSQL (everything that GORM supports)
- etcd## Features
### Overlays and overrides (Log-structured Merge-Tree)
### Templating
### Validation
### JSON Schema
## The `isr` format
### Codecs
### Schema
## Concepts
### Namespaces
### Indexes
## Getting started