atomic-server
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. It's a database and a server for storing and sharing typed linked data. Demo on atomicdata.dev
Powered by Rust, atomic-lib, actix-web, Sled and more.
atomic-cli new class
for this). Example classes here.The dockerfile
is located in the project root, above this server
folder.
docker run -p 80:80 -p 443:443 -v atomic-storage:/atomic-storage joepmeneer/atomic-server
atomic-cli
and atomic-data-browser clients for authorization.docker pull joepmeneer/atomic-server
and docker should fetch the latest version.Install Cargo to build from source.
```sh
git clone git@github.com:joepio/atomic.git cd atomic/server
cp default.env .env
cargo run
cargo run --features desktop
```
You can also install with cargo install atomic-server
, but this binary will also require:
/templates
directory/static
directoryCheck out ./example_requests.http for various HTTP requests to the server.
If you want to run Atomic Server on your own VPS + domain, make sure to correctly set the .env
.
See default.env
for a template and explanation of variables.
atomic-cli
as clientatomic-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.
You can fetch individual items by sending a GET request to their URL.
```sh
curl -i -H "Accept: application/ad-json" https://atomicdata.dev/properties/shortname
curl -i -H "Accept: application/ld+json" https://atomicdata.dev/properties/shortname
curl -i -H "Accept: application/json" https://atomicdata.dev/properties/shortname
curl -i -H "Accept: text/turtle" https://atomicdata.dev/properties/shortname ```
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
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.
```sh
cargo test --all ```
```sh
cargo install drill drill -b benchmark.yml --stats ```