Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Reinstall dependencies
  • Loading branch information
waleedlatif1 committed Aug 6, 2025
commit 1b5eed200c3ddf254229e3f70d0de5d1e5d3a0d8
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -537,7 +537,7 @@ This visibility system ensures clean user interfaces while maintaining full flex

### Guidelines & Best Practices

- **Code Style:** Follow the project's ESLint and Prettier configurations. Use meaningful variable names and small, focused functions.
- **Code Style:** Follow the project's Biome configurations. Use meaningful variable names and small, focused functions.
- **Documentation:** Clearly document the purpose, inputs, outputs, and any special behavior for your block/tool.
- **Error Handling:** Implement robust error handling and provide user-friendly error messages.
- **Parameter Visibility:** Always specify the appropriate visibility level for each parameter to ensure proper UI behavior and LLM integration.
Expand Down
15 changes: 3 additions & 12 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 11 additions & 11 deletions helm/sim/examples/values-whitelabeled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ app:
# Custom branding configuration
env:
# Application URLs (update with your domain)
NEXT_PUBLIC_APP_URL: "https://acme.sim"
BETTER_AUTH_URL: "https://acme.sim"
SOCKET_SERVER_URL: "https://acme-ws.sim"
NEXT_PUBLIC_SOCKET_URL: "https://acme-ws.sim"
NEXT_PUBLIC_APP_URL: "https://sim.acme.ai"
BETTER_AUTH_URL: "https://sim.acme.ai"
SOCKET_SERVER_URL: "https://sim-ws.acme.ai"
NEXT_PUBLIC_SOCKET_URL: "https://sim-ws.acme.ai"

# Security settings (REQUIRED)
BETTER_AUTH_SECRET: "your-production-auth-secret-here"
Expand All @@ -44,11 +44,11 @@ realtime:
enabled: true
replicaCount: 1
env:
NEXT_PUBLIC_APP_URL: "https://acme.sim"
BETTER_AUTH_URL: "https://acme.sim"
NEXT_PUBLIC_SOCKET_URL: "https://acme-ws.sim"
NEXT_PUBLIC_APP_URL: "https://sim.acme.ai"
BETTER_AUTH_URL: "https://sim.acme.ai"
NEXT_PUBLIC_SOCKET_URL: "https://sim-ws.acme.ai"
BETTER_AUTH_SECRET: "your-production-auth-secret-here"
ALLOWED_ORIGINS: "https://acme.sim"
ALLOWED_ORIGINS: "https://sim.acme.ai"

# PostgreSQL database
postgresql:
Expand All @@ -68,20 +68,20 @@ ingress:
cert-manager.io/cluster-issuer: "letsencrypt-prod"

app:
host: "acme.sim"
host: "sim.acme.ai"
paths:
- path: /
pathType: Prefix

realtime:
host: "acme-ws.sim"
host: "sim-ws.acme.ai"
paths:
- path: /
pathType: Prefix

tls:
enabled: true
secretName: "acme-sim-tls"
secretName: "sim-acme-tls"

# Auto-scaling
autoscaling:
Expand Down
3 changes: 0 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,9 @@
"devDependencies": {
"@biomejs/biome": "2.0.0-beta.5",
"@next/env": "^15.3.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"dotenv-cli": "^8.0.0",
"husky": "9.1.7",
"lint-staged": "16.0.0",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"turbo": "2.5.5"
},
"lint-staged": {
Expand Down