#server #postgresql #registry #component #warg #registries #in-memory

dev bin+lib warg-server

A server library for Warg component registries

10 releases (breaking)

0.7.0 May 16, 2024
0.5.0 May 8, 2024
0.5.0-dev Mar 7, 2024
0.2.0 Oct 20, 2023
0.0.0 Jan 31, 2023

#156 in Database interfaces

Download history 134/week @ 2024-04-02 81/week @ 2024-04-09 66/week @ 2024-04-16 98/week @ 2024-04-23 73/week @ 2024-04-30 644/week @ 2024-05-07 426/week @ 2024-05-14 127/week @ 2024-05-21 83/week @ 2024-05-28 31/week @ 2024-06-04 66/week @ 2024-06-11 53/week @ 2024-06-18 52/week @ 2024-06-25 55/week @ 2024-07-02 85/week @ 2024-07-09 57/week @ 2024-07-16

279 downloads per month
Used in 4 crates

Apache-2.0 WITH LLVM-exception

450KB
11K SLoC

Warg Registry Server

⚠️ This is prototype quality code at this time. ⚠️

Running the server

The registry server can be started with either in-memory or PostgreSQL storage.

In-memory storage

With in-memory storage, the server will store all data in-memory and the data will be lost when the server is stopped.

To start the server, provide the WARG_OPERATOR_KEY environment variable, which is used to sign the entries in the server's operator log:

Also, provide the WARG_NAMESPACE environment variable to define the initial namespace for package publishing.

$ WARG_NAMESPACE=example WARG_OPERATOR_KEY="ecdsa-p256:I+UlDo0HxyBBFeelhPPWmD+LnklOpqZDkrFP5VduASk=" cargo run -- --content-dir content
2023-04-18T23:48:52.149746Z  INFO warg_server::services::core: initializing core service
2023-04-18T23:48:52.170199Z  INFO warg_server::services::core: core service is running
2023-04-18T23:48:52.170233Z  INFO warg_server: listening on 0.0.0.0:8090

PostgreSQL storage

With PostgreSQL storage, the server will store all data in a PostgreSQL database.

Support for PostgreSQL storage is behind the postgres compilation feature flag.

The easiest way to start a PostgreSQL server is with Docker:

docker run -d --name postgres -e POSTGRES_PASSWORD=password -v /tmp/data:/var/lib/postgresql/data -p 5432:5432 postgres

With the above command, data will be stored in /tmp/data on the host machine.

To set up the database, install diesel-cli:

cargo install diesel_cli

And run the setup with:

diesel database setup --database-url postgres://postgres:password@localhost/registry

Here, registry is the database name that will be created.

To start the registry server, provide both the WARG_OPERATOR_KEY and WARG_DATABASE_URL environment variables:

WARG_NAMESPACE=example WARG_DATABASE_URL=postgres://postgres:password@localhost/registry WARG_OPERATOR_KEY="ecdsa-p256:I+UlDo0HxyBBFeelhPPWmD+LnklOpqZDkrFP5VduASk=" cargo run -p warg-server --features postgres -- --content-dir content --data-store postgres

The --data-store postgres flag starts the server with PostgreSQL data storage.

The server may now be restarted and will continue to use the same database.

Dependencies

~20–35MB
~569K SLoC