Skip to content

Installing Shaper

  1. Make sure you have Docker installed and running.
  2. Start the container
    Terminal window
    docker run --rm -it -p5454:5454 taleshape/shaper
  3. Open http://localhost:5454 in your browser

To persist data and changes you made, you need to mount a volume to the container. Shaper stores data in the /data directory inside the container. You can mount a local directory to this path using the -v option in Docker:

Terminal window
docker run --rm -it -p5454:5454 -v ./mydata:/data taleshape/shaper

For more options see:

Terminal window
docker run --rm taleshape/shaper --help

Since Shaper is a self-contained Go binary, it should be easy to run it standalone.

For easy integration into your JavaScript/TypeScript projects, we plan to provide Shaper as an NPM package.