atomic-server
atomic-server copied to clipboard
An open source headless CMS / real-time database. Powerful table editor, full-text search, and SDKs for JS / React / Svelte.
Credits to @Polleps PR Checklist: - [x] Link to related issue closes #432 - [x] Add changelog entry linking to issue - [x] Added tests (if needed) - [x] Update...
see https://github.com/ontola/atomic-data-docs/issues/93 - [x] Allow JSON-AD importers to deal with - [x] `localID` - [ ] `globalId` - [x] References to other (internal) resources - [ ] Nested resources -...
Atomic-server has been designed to run on low-end hardware, as a self-hosted server. This was why I decided to use an embedded database (sled) and search engine (tantivy). However, this...
A user will probably expect the search feature to be case-insensitive, because most other search engines are. If they get no hit, they will assume the thing doesn't exit, rather...
The graphql API is pretty popular, and for good reason. Most importantly for me, it allows **nested resources in one request**. This means you can populate a list of blogposts...
Currently, if a client uses the `SUBSCRIBE` webhook message, the server will perform an authorization check for a resouce that it probably has not stored. This could lead to unnecessary...
Many headless CMS tools have tools that help content people (writers / communication employees) schedule posts, show which items are published, and put things in an archive. Let's call this...
If we have a client who is creating Resources and storing it only locally, which URL does it create? Of course, whatever they are: the URL will not resolve. I...
The errors currently show the entire AtomicServerError struct, which is far too verbose. I should just show the message.
_By @AlexMikhalev, replaces #461_ ## Getting Started - warm up and machine to machine communications ``` minikube status fluvio profile current fluvio cluster check ``` Code quality "Hello World", for...