Skip to content

Running

No-code Project

You can run the no-code project really easily with the CLI toolset.

graphql API can only be ran when you have a postgres storage setup in your YAML.

indexer and graphql
rindexer start all

You can change the GraphQL port by doing --port [number] in both all and graphql commands above.

Rust Project

If you want to run this with docker support for the postgres first run:

docker compose up -d

Then to run the the rust project you can run the following command:

everything
cargo run

We also advise you in production to run your rust projects in release mode, you can run it in release mode using

cargo run --release

You can also do other fancy production builds with other frameworks like jemalloc and other flags, but we will leave that to you to explore.