-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy path.env.example
More file actions
88 lines (69 loc) · 2.44 KB
/
Copy path.env.example
File metadata and controls
88 lines (69 loc) · 2.44 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
APP_ENV=local
APP_KEY=base64:ilyL17PxJTnZXqNBVr+P36ARu9NF7HgqJ87ciGWvo5E=
APP_DEBUG=false
APP_TIMEZONE=UTC
APP_URL=http://localhost
VITE_APP_URL=http://localhost
APP_LOCALE=en
APP_FALLBACK_LOCALE=en
APP_FAKER_LOCALE=en_US
APP_MAINTENANCE_DRIVER=file
APP_MAINTENANCE_STORE=database
BCRYPT_ROUNDS=12
DB_CONNECTION=sqlite
DB_DATABASE=database/database.sqlite
CACHE_STORE=array
SESSION_DRIVER=array
QUEUE_DRIVER=sync
SCOUT_DRIVER=null
ALGOLIA_APP_ID=
ALGOLIA_KEY=
ALGOLIA_SECRET=
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=eu-west-1
AWS_BUCKET=codeweek-dev
AWS_URL=https://codeweek-s3.s3.amazonaws.com/
LOG_CHANNEL=stack
LOG_STACK=single
# Set to true on live to see Nova form errors in API response (DevTools → Network → failed request → Response)
NOVA_SHOW_ERRORS=false
LOCALES=al,ba,bg,cs,da,de,el,en,es,et,fi,fr,hr,hu,it,lt,lv,me,mk,nl,pl,pt,ro,rs,sk,sl,sv
ADMIN_EMAIL=admin@codeweek.test
SESSION_ENCRYPT=false
SESSION_PATH=/
SESSION_DOMAIN=null
AUTH_MODEL=App\User
# ---------------------------------------------------------------------------
# Support AI copilot (Phase 1: AI triage + frontend code PRs)
# ---------------------------------------------------------------------------
SUPPORT_AI_ENABLED=false
# One Cursor key for both the headless CLI (triage) and Cloud Agents API (PRs).
CURSOR_API_KEY=
# Triage brain (Cursor headless CLI: `agent -p --output-format json`)
SUPPORT_AI_TRIAGE_ENABLED=true
SUPPORT_AI_CLI_BIN=agent
SUPPORT_AI_CLI_MODEL=gpt-5.4-mini-medium
SUPPORT_AI_CLI_TIMEOUT=120
# Frontend code changes (Cursor Cloud Agents API -> PR into dev)
SUPPORT_AI_CODE_CHANGE_ENABLED=false
SUPPORT_AI_CURSOR_API_BASE=https://api.cursor.com
SUPPORT_AI_CLOUD_MODEL=composer-2.5
SUPPORT_AI_REPO_URL=https://github.com/codeeu/codeweek
SUPPORT_AI_DEV_BRANCH=dev
SUPPORT_AI_AUTO_CREATE_PR=true
SUPPORT_AI_MAX_POLL_MINUTES=30
# Dev -> Live promotion: pr_only | none (never auto-merges to live)
SUPPORT_AI_LIVE_PROMOTION=pr_only
SUPPORT_AI_LIVE_BRANCH=master
# Token-gated; promotion PR is skipped if absent. owner/repo form.
SUPPORT_GITHUB_REPO=codeeu/codeweek
SUPPORT_GITHUB_TOKEN=
# Phase 2 — AI artisan changes (allowlist-first, dry-run + APPROVE)
SUPPORT_AI_ARTISAN_ENABLED=false
SUPPORT_AI_ARTISAN_ALLOW_RAW=true
SUPPORT_AI_ARTISAN_TIMEOUT=120
SUPPORT_AI_ARTISAN_OUTPUT_LIMIT=8000
# Phase 3 — AI content edits on Nova-managed records (text fields only, dry-run + APPROVE)
SUPPORT_AI_CONTENT_ENABLED=false
SUPPORT_AI_CONTENT_MAX_FIELD_LENGTH=5000