Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.capy.sc/llms.txt

Use this file to discover all available pages before exploring further.

Use capy run to decrypt .env and pass the plaintext values to your binary. Your code reads env vars with std::env::var or crates like envy.
1

Install the CLI

brew install capysc/tap/capy
2

Sync your secrets

capy
3

Run your app

capy run -- cargo run
capy run -- ./target/release/my-binary
capy run -- cargo test
Read env vars the standard way:
use std::env;

let db_url = env::var("DATABASE_URL").expect("DATABASE_URL not set");
4

Invite a teammate

capy invite teammate@example.com
5

Deploy

capy deploy

What’s next

Running your app

The full story on capy run.