Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
942ef55
fix(server): skip origin fetch when creating worktrees in repos witho…
t3dotgg Aug 7, 2026
c3ed212
fix(web): update tooltip no longer dismisses when scrolling release n…
t3dotgg Aug 7, 2026
4cd9bfd
fix(server): stop showing commit/push/PR notices as errors in the wor…
t3dotgg Aug 7, 2026
1eb8127
fix(web): show remote environment for non-Git projects (#5555)
t3dotgg Aug 7, 2026
17a53fc
fix(server): stopping a Claude thread no longer shows an ede_diagnost…
t3dotgg Aug 7, 2026
cbf6c8f
fix(web): show one toast when snoozing threads in bulk (#5560)
t3dotgg Aug 7, 2026
0c46b46
fix(server): let stopped threads settle immediately (#5553)
t3dotgg Aug 7, 2026
7b13cc1
feat: paginate thread loading with user-anchored turn windows (#5493)
t3dotgg Aug 7, 2026
56e1aa3
fix: prevent reconnect loops during server stalls (#5561)
gfsaaser24 Aug 7, 2026
19d8a83
fix(server): settle stopped Claude subagents (#5568)
t3dotgg Aug 7, 2026
0a468fb
fix: scrolling up during a running thread no longer snaps back to the…
t3dotgg Aug 7, 2026
a3f1d35
fix(server): one disconnecting client no longer blocks every reconnec…
t3dotgg Aug 7, 2026
118cc74
test(server): catch client transfer regressions in CI (#5350)
t3dotgg Aug 7, 2026
0163cdb
fix(web): stop the "requests are slow" warning from firing on every p…
t3dotgg Aug 7, 2026
2c00145
fix(web): keep agent panel rows stable (#5569)
t3dotgg Aug 7, 2026
96d0a9b
docs: ship production T3 Connect public config in .env.example (#5573)
t3dotgg Aug 7, 2026
956347e
fix(web): plans stop hijacking the UI, fold into chat instead (#5558)
t3dotgg Aug 7, 2026
7c13d06
feat(web): remove Build/Plan toggle from the composer (#5551)
t3dotgg Aug 7, 2026
45b389f
feat(web): per-device provider settings (#4479)
t3dotgg Aug 7, 2026
3bf32ef
fix(mobile): invisible T3 Connect devices can now be seen and removed…
t3dotgg Aug 7, 2026
2009d87
fix: add missing space before 'GitHub releases page' link on download…
Mateleo Aug 7, 2026
cd88dd2
fix(web): stop the sidebar "Working" label from pulsing (#5580)
t3dotgg Aug 7, 2026
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
21 changes: 12 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
# Optional: T3 Connect source builds
# Leave these unset to disable optional T3 Connect features in local source builds.
# Release builds inject their public values at build time. Do not add server-side
# secrets to this file.
# `cp .env.example .env` enables T3 Connect against the production deployment.
# These are the same public identifiers baked into official release builds, not
# secrets. Remove or comment them out to build with cloud features disabled.
# Do not add server-side secrets to this file.

# Get these from the Clerk Dashboard under API keys, JWT templates, and OAuth applications.
# T3CODE_CLERK_PUBLISHABLE_KEY=pk_test_...
# T3CODE_CLERK_JWT_TEMPLATE=t3-relay
# T3CODE_CLERK_CLI_OAUTH_CLIENT_ID=oauthapp_...
# Production Clerk instance. To use your own, get these from the Clerk Dashboard
# under API keys, JWT templates, and OAuth applications.
T3CODE_CLERK_PUBLISHABLE_KEY=pk_live_Y2xlcmsudDMuY29kZXMk
T3CODE_CLERK_JWT_TEMPLATE=t3-relay
T3CODE_CLERK_CLI_OAUTH_CLIENT_ID=hzxSgY2cH10sDU2r

# Optional: signed macOS passkey builds. The RP domain defaults to the Frontend API
# hostname encoded in T3CODE_CLERK_PUBLISHABLE_KEY. Set the override only when Clerk
Expand All @@ -15,8 +17,9 @@
# T3CODE_MACOS_PROVISIONING_PROFILE=/absolute/path/to/t3code.provisionprofile
# T3CODE_CLERK_PASSKEY_RP_DOMAINS=example.clerk.accounts.dev,clerk.example.com

# Get this from your relay deployment. `infra/relay` deploys update it automatically.
# T3CODE_RELAY_URL=https://relay.example.com
# Production relay. For a self-hosted relay, `infra/relay` deploys update it
# automatically.
T3CODE_RELAY_URL=https://relay.t3.codes

# Optional: hosted app origin used by the CLI's out-of-band OAuth flow.
# Defaults to https://app.t3.codes; override to test against a staging deployment.
Expand Down
Loading
Loading