Replicator

The Jinaga Replicator is a single machine in a network. It stores and shares facts. To get started, create a Replicator of your very own on the Jinaga Portal.

When you publish a Replicator, you will be given a URL. Use a tool like Postman to POST messages to https://repdev.jinaga.com/xyz123.../write and /read.

You can download an example Postman collection to try it yourself. Edit the collection and enter your own replicator URL.

Enter the replicator URL in the Postman collection variables

Docker

If you would like to keep everything local, you can also run the Replicator in Docker. Install Docker Desktop. Then run the following commands from the command prompt (Mac Terminal, Windows PowerShell, or WSL2).

docker pull jinaga/jinaga-replicator
docker run --name my-replicator -p8080:8080 jinaga/jinaga-replicator

This creates and starts a new container called my-replicator. The container is listening at port 8080 for commands. Use a tool like Postman to POST messages to http://localhost:8080/jinaga/write and /read.

You can download an example Postman collection to populate your replicator. Edit the collection variables and enter the replicator URL http://localhost:8080/jinaga.

Enter the local replicator URL in the Postman collection variables

See Also