-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
53 lines (45 loc) · 2.02 KB
/
Copy path.env.example
File metadata and controls
53 lines (45 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Local development template. Copy to .env (gitignored) and fill in real values.
# cp .env.example .env
# Restart the backend after changes: npm run start:dev
#
# Each integration turns on automatically when its variables are set.
# Leave a group empty to keep using demo mode for that feature.
#
# IMPORTANT: Do NOT set NODE_ENV in this file. Leaving it unset means the
# backend runs in development mode and falls back to safe localhost CORS
# defaults. For production, use a separate .env.production file — see
# .env.production.example and QUICKSTART.md section 7.
PORT=3001
ALLOW_DEMO_MODE=true
# --- App public URL (used to build invite + reset links in emails) ---
# In dev, this is your Vite origin. Update for production deploys.
APP_PUBLIC_URL=http://localhost:5173
# --- Customer.io transactional email ---
# Leave blank in dev to use the in-console "demo" fallback that logs invite
# and reset links to the server output. With a real key, real emails will
# send.
CUSTOMERIO_APP_API_KEY=
CUSTOMERIO_REGION=us
CUSTOMERIO_FROM_NAME=QA Tool
CUSTOMERIO_INVITE_TEMPLATE_ID=
CUSTOMERIO_RESET_TEMPLATE_ID=
# --- QA Tool API (run-test) ---
QA_BACKEND_API_BASE_URL=https://api.qa-backend.example.com
QA_BACKEND_API_KEY=your_qa_backend_api_key
# Path appended to base URL (adjust to match your API)
QA_BACKEND_PATH=/qa/run-test
# bearer | api-key
QA_BACKEND_AUTH_STYLE=bearer
# --- Jira (ticket import) ---
JIRA_BASE_URL=https://yourcompany.atlassian.net
JIRA_EMAIL=your-email@example.com
JIRA_API_TOKEN=your_jira_api_token
# --- Slack (notifications) ---
SLACK_WEBHOOK_URL=https://hooks.slack.com/services/your/webhook/path
# --- Zoho Cliq (notifications) ---
ZOHO_CLIQ_WEBHOOK_URL=https://cliq.zoho.com/api/v2/channelsbyname/your-channel/message?zapikey=your_zapikey
# --- OpenAI / ChatGPT (interpret plain English, then call QA Backend when configured) ---
OPENAI_API_KEY=your_openai_api_key
# Optional: gpt-4o, gpt-4o-mini, etc.
OPENAI_MODEL=gpt-4o-mini
# For full pipeline (interpret → execute → summarize), set OpenAI + QA Backend keys above.