Installing Shaper
Docker
Section titled “Docker”- Make sure you have Docker installed and running.
- Start the container
Terminal window docker run --rm -it -p5454:5454 taleshape/shaper - Open http://localhost:5454 in your browser
Persisting Data
Section titled “Persisting Data”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:
docker run --rm -it -p5454:5454 -v ./mydata:/data taleshape/shaper
Options
Section titled “Options”For more options see:
docker run --rm taleshape/shaper --help
Binaries
Section titled “Binaries”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.