Skip to main content
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
npm install -g @capysc/cli
bun add -g @capysc/cli
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.
Last modified on June 10, 2026