Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copy to .env (or .env.secrets if using direnv) for local development.

# Optional: set this to use a non-default Codex config location.
# By default, Codex uses the system user config (for example ~/.codex).
# CODEX_HOME=~/.codex

# Optional: custom Codex CLI binary path.
# GAMBIT_CODEX_BIN=codex
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,18 @@ open http://localhost:8000/debug

Use the CLI to run decks locally, stream output, and capture traces/state.

### Environment setup

For local development, copy `.env.example` to `.env` if you want local
overrides:

```bash
cp .env.example .env
```

Gambit uses your system Codex login/config by default. If you need a custom
location, set `CODEX_HOME` explicitly.

Run with npx (no install):

```
Expand Down
Loading