atomic-server

Status: pre-alpha

A lightweight HTTP server that shares created Atomic data on the web.

Progress

Install from source

Install Cargo to build from source.

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

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

Visit http://localhost:8080/test

```

Running from cargo

You can also install with cargo install atomic-server, but this binary will also require:

Usage

Get individual resources

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

```sh

Fetch as AD3 triples

curl -i -H "Accept: application/ad3-ndjson" http://127.0.0.1:8081/test

Fetch as JSON-LD

curl -i -H "Accept: application/ld+json" http://127.0.0.1:8081/test

Fetch as JSON

curl -i -H "Accept: application/json" http://127.0.0.1:8081/test ```

Query the store with Triple Pattern Fragments

```sh

Fetch as AD3 triples

curl -i -H "Accept: application/ad3-ndjson" "http://127.0.0.1:8081/tpf?subject=&property=&value=test" ```

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 ```