Skip to content
Draft
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
20 changes: 18 additions & 2 deletions .env.sample
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
# Analytics (Optional)
POSTHOG_API_KEY=key-goes-here

# Roo Code Cloud / Local Development
# Roo Code Cloud Configuration
# These environment variables allow you to use a self-hosted alternative to Roo Cloud.
# See SELF_HOSTING.md for detailed documentation on implementing your own cloud services.

# Authentication Service (Clerk-compatible OAuth provider)
# Default: https://clerk.roocode.com
# For development/self-hosted: Your Clerk instance or compatible OAuth service
CLERK_BASE_URL=https://epic-chamois-85.clerk.accounts.dev

# API Service (Main backend API)
# Default: https://app.roocode.com
# For development/self-hosted: Your API server URL
ROO_CODE_API_URL=http://localhost:3000
ROO_CODE_PROVIDER_URL=http://localhost:8080/proxy/v1

# Provider Proxy Service (OpenAI-compatible API endpoint)
# Default: https://api.roocode.com/proxy
# For development/self-hosted: Your provider proxy URL (e.g., http://localhost:8080/proxy)
# Note: Do not include /v1 suffix - it will be added automatically (e.g., /proxy becomes /proxy/v1)
ROO_CODE_PROVIDER_URL=http://localhost:8080/proxy
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ Learn more: [Using Modes](https://docs.roocode.com/basic-usage/using-modes) •
## Resources

- **[Documentation](https://docs.roocode.com):** The official guide to installing, configuring, and mastering Roo Code.
- **[Self-Hosting Guide](SELF_HOSTING.md):** Learn how to replace Roo Cloud with your own self-hosted services.
- **[YouTube Channel](https://youtube.com/@roocodeyt?feature=shared):** Watch tutorials and see features in action.
- **[Discord Server](https://discord.gg/roocode):** Join the community for real-time help and discussion.
- **[Reddit Community](https://www.reddit.com/r/RooCode):** Share your experiences and see what others are building.
Expand Down
Loading