Install Just:
cargo install just
Install other tools:
just install
By default, a domain assigned by serveo is used.
If you want to use a specific domain, set APUB_LITE_URL
in your .env
file as follows:
APUB_LITE_URL="https://example.com"
Then, start the server in development mode:
just dev
After completing your work, you need to verify it using the following commands:
just format
(aliasjust f
): Formats Rust files using rustfmt.just lint
(aliasjust l
): Checks if the code adheres to the rules using clippy.
You can also perform both actions together using just ready
(alias just r
).