MTayyaBH commited on
Commit
da455d8
Β·
1 Parent(s): 1fb1f42

Remove .env from tracking and ignore it

Browse files
Files changed (2) hide show
  1. .env +0 -81
  2. .gitignore +1 -0
.env DELETED
@@ -1,81 +0,0 @@
1
- # ─── Core Database (PostgreSQL) ───────────────────────────────────────────────
2
-
3
- DB_HOST=208.109.188.83
4
- DB_PORT=5432
5
- DB_USERNAME=postgres
6
- DB_PASSWORD=fazi@123jJ
7
- DB_DATABASE=chatbolt
8
-
9
-
10
-
11
- # ─── JWT ──────────────────────────────────────────────────────────────────────
12
- JWT_SECRET=1456185d-7228-434e-9650-e5b340bf7042
13
- JWT_EXPIRES_IN=7d
14
-
15
- # ─── Encryption (for DB connection strings stored in DB) ──────────────────────
16
- ENCRYPTION_KEY=6c3a9d76-75f1-4144-ae63-db00cb983f1d
17
-
18
- # ─── Groq AI ──────────────────────────────────────────────────────────────────
19
- GROQ_API_KEY=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
20
-
21
-
22
- USE_LANGGRAPH=true
23
-
24
- # ─── Debug Mode ───────────────────────────────────────────────────────────────
25
- # Set to "true" to enable `debugger;` pause points across all services.
26
- # Keep "false" in dev/prod unless actively stepping through code.
27
- DEBUG_MODE=true
28
-
29
- # ─── Hooks SQL Cache ──────────────────────────────────────────────────────────
30
- # In-memory cache for pre-hook SELECT results (keyed per hook + company_id).
31
- # HOOKS_CACHE_ENABLED=true|false (default: true)
32
- # HOOKS_CACHE_TTL_SECONDS=<seconds> (default: 30)
33
- HOOKS_CACHE_ENABLED=true
34
- HOOKS_CACHE_TTL_SECONDS=30
35
-
36
- # ─── Logging ──────────────────────────────────────────────────────────────────
37
- # LOGS_ENABLED=true|false (default: true)
38
- # Master switch β€” set "false" to silence all non-error output.
39
- # LOG_LEVEL=error|warn|log|debug|verbose (default: log)
40
- # Fine-grained threshold. Errors are ALWAYS logged.
41
- LOGS_ENABLED=true
42
- LOG_LEVEL=log
43
-
44
- # ─── LLM Timeout ──────────────────────────────────────────────────────────────
45
- # Hard timeout for every LLM provider call. Prevents hanging requests from
46
- # blocking the user indefinitely. Triggers the "network error" friendly reply.
47
- # LLM_TIMEOUT_SECONDS=<seconds> (default: 25)
48
- LLM_TIMEOUT_SECONDS=20
49
-
50
- # ─── LLM Fallback (auto-retry on transient failures) ──────────────────────────
51
- # When the agent's primary provider fails with credit/network/rate-limit errors,
52
- # we automatically retry the SAME call on this fallback provider.
53
- # Leave blank to disable fallback.
54
- # LLM_FALLBACK_PROVIDER=groq|openai|anthropic|together|deepseek
55
- # LLM_FALLBACK_MODEL=<model id accepted by the fallback provider>
56
- # LLM_FALLBACK_API_KEY=<optional β€” falls back to the per-provider env key>
57
- LLM_FALLBACK_PROVIDER=groq
58
- LLM_FALLBACK_MODEL=llama-3.3-70b-versatile
59
- LLM_FALLBACK_API_KEY=
60
-
61
-
62
- # ─── Microservice Ports (TCP) ─────────────────────────────────────────────────
63
- API_GATEWAY_PORT=3000
64
- AGENT_SERVICE_PORT=3001
65
- DB_CONNECTOR_PORT=3002
66
- KNOWLEDGE_SERVICE_PORT=3003
67
-
68
- # ─── Microservice Hosts ───────────────────────────────────────────────────────
69
- AGENT_SERVICE_HOST=localhost
70
- DB_CONNECTOR_HOST=localhost
71
- KNOWLEDGE_SERVICE_HOST=localhost
72
-
73
- # ─── Stripe ───────────────────────────────────────────────────────────────────
74
- STRIPE_SECRET_KEY=sk_test_51TANb5EoPxw8ewEkWnqnJsgDeg4w2eq2MNTaP57OBkkpeENvnNUrXODTIV8kulWFP5otgI5fqWPNkg63EKjl5Gkz004fb22JhJ
75
- STRIPE_WEBHOOK_SECRET=
76
-
77
- # ─── CORS ─────────────────────────────────────────────────────────────────────
78
- CORS_ORIGIN=*
79
-
80
- # ─── Frontend URL (Stripe redirects) ──────────────────────────────────────────
81
- FRONTEND_URL=*
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ .env