atomic-server

crates.io Discord chat MIT licensed github

Status: Alpha. Not ready for production time. Prone to changes and corrupt databases when upgrading. Changelog

The easiest way to share Atomic Data on the web. atomic-server is a graph database server for storing and sharing typed linked data. Demo on atomicdata.dev

Powered by Rust, atomic-lib, actix-web, sled and more.

When should you use this

SUBCOMMANDS: export Create a JSON-AD backup of the store. import Import a JSON-AD backup to the store. Overwrites Resources with same @id. run Starts the server

When not to use this

Installation & getting started

You can run atomic-server in four ways:

Run using docker

The dockerfile is located in the project root, above this server folder.

Install from source

```sh

Clone this repoo

git clone git@github.com:joepio/atomic.git cd atomic/server

Optional, but recommended: Create a new .env using the template.

cp default.env .env

Run the server. It creates a store in ~/.config/atomic/db by default

cargo run

Or tun the extra-cool desktop version with a presence in your app tray

cargo run --features desktop

Visit http://localhost

```

Troubleshooting during installation

```sh

If pkg-config or libssl-dev is not installed, make sure to install them

sudo apt-get install -y pkg-config libssl-dev --fix-missing 10:52:39 ```

Initial setup and configuration

HTTPS Setup

You'll probably want to make your Atomic Data available through HTTPS. You can use the embedded HTTPS / TLS setup powered by LetsEncrypt, acme_lib and rustls. To setup HTTPS, we'll need to set some environment variables. Open .env and set:

env ATOMIC_EMAIL=youremail@example.com ATOMIC_DOMAIN=example.com ATOMIC_HTTPS=true

Run the server: cargo run. Make sure the server is accessible at ATOMIC_DOMAIN at port 80, because Let's Encrypt will send an HTTP request to this server's /.well-known directory to check the keys. It will now initialize the certificate. Read the logs, watch for errors.

HTTPS certificates are automatically renewed when the server is restarted, and the certs are 4 weeks or older.

Usage

There are three ways to interact with this server:

Use atomic-cli as client

atomic-cli is a useful terminal tool for interacting with atomic-server. It makes it easy to query and edit Atomic Data from the command line. Check it out.

API

You can fetch individual items by sending a GET request to their URL.

```sh

Fetch as JSON-AD (de facto standard for Atomic Data)

curl -i -H "Accept: application/ad+json" https://atomicdata.dev/properties/shortname

Fetch as JSON-LD

curl -i -H "Accept: application/ld+json" https://atomicdata.dev/properties/shortname

Fetch as JSON

curl -i -H "Accept: application/json" https://atomicdata.dev/properties/shortname

Fetch as Turtle / N3

curl -i -H "Accept: text/turtle" https://atomicdata.dev/properties/shortname ```

Check out ./example_requests.http for more things that you can do.

Extra commands

The atomic-server binary has some extra CLI commands: import and export. Run atomic-server --help to read more.

Testing

```sh

This also makes sure that cli and server work, plus it test the db feature

cargo test --all ```

Performance benchmarking

```sh

Install drill

cargo install drill drill -b benchmark.yml --stats ```