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 os.Getenv or any config library (Viper, envconfig).
1

Install the CLI

brew install capysc/tap/capy
2

Sync your secrets

capy
Authenticates, creates the project on first run, encrypts every value in .env, and rewrites the file with capy:… snippets.
3

Run your app

capy run -- go run .
capy run -- ./my-binary
capy run -- go test ./...
Read env vars the standard way:
import "os"

dbURL := os.Getenv("DATABASE_URL")
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.

Deploying

Deploy tokens and platform walkthroughs.