create-interview-cockpit 0.26.0 → 0.26.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/template/.env.example +51 -9
package/package.json
CHANGED
package/template/.env.example
CHANGED
|
@@ -1,14 +1,56 @@
|
|
|
1
|
+
# Copy this file to .env and fill in your values
|
|
2
|
+
|
|
1
3
|
# AI provider: openai | google | anthropic
|
|
2
|
-
AI_PROVIDER=
|
|
3
|
-
|
|
4
|
+
AI_PROVIDER=google
|
|
5
|
+
|
|
6
|
+
# API keys — only the one matching AI_PROVIDER is required
|
|
7
|
+
OPENAI_API_KEY=sk-your-key-here
|
|
8
|
+
GOOGLE_API_KEY=your-google-key-here
|
|
9
|
+
ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
10
|
+
|
|
11
|
+
# Model override — leave blank for defaults (gpt-4o / gemini-2.0-flash / claude-sonnet-4-20250514)
|
|
12
|
+
AI_MODEL=
|
|
13
|
+
|
|
14
|
+
# Path to your project code for code context browsing. This is the primary root
|
|
15
|
+
# and is also used as the default Git Diff root when GIT_DIFF_DIR is unset.
|
|
16
|
+
CODE_CONTEXT_DIR=/path/to/your/project
|
|
4
17
|
|
|
5
|
-
#
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
18
|
+
# Optional: additional code-context roots. Separate entries with comma,
|
|
19
|
+
# semicolon, or newlines. Entries can be plain paths or named as Name=/path.
|
|
20
|
+
# CODE_CONTEXT_DIRS=Frontend=/path/to/client;Backend=/path/to/server
|
|
21
|
+
|
|
22
|
+
# Optional: override Git Diff roots. If unset, Git Diff uses the configured
|
|
23
|
+
# code-context roots. Separate entries with comma, semicolon, or newlines.
|
|
24
|
+
# Entries can be plain paths or named as Name=/path.
|
|
25
|
+
# GIT_DIFF_DIR=/path/to/primary/git/repo
|
|
26
|
+
# GIT_DIFF_DIRS=Frontend=/path/to/client;Backend=/path/to/server
|
|
27
|
+
|
|
28
|
+
# Optional: extra code-context ignore rules.
|
|
29
|
+
# Accepts comma, semicolon, or newline separated values.
|
|
30
|
+
# Directory/file rules match by name anywhere in the tree.
|
|
31
|
+
# Path rules are relative to each configured code-context root and match exact path or prefix.
|
|
32
|
+
# IGNORE_DIRS is also supported as an alias for CODE_CONTEXT_IGNORE_DIRS.
|
|
33
|
+
# CODE_CONTEXT_IGNORE_DIRS=vendor,tmp,.history
|
|
34
|
+
# CODE_CONTEXT_IGNORE_FILES=pnpm-lock.yaml,package-lock.json
|
|
35
|
+
# CODE_CONTEXT_IGNORE_EXTENSIONS=.snap,.log
|
|
36
|
+
# CODE_CONTEXT_IGNORE_PATHS=apps/mobile/generated,docs/archive
|
|
37
|
+
CODE_CONTEXT_IGNORE_DIRS=
|
|
38
|
+
IGNORE_DIRS=
|
|
39
|
+
CODE_CONTEXT_IGNORE_FILES=
|
|
40
|
+
CODE_CONTEXT_IGNORE_EXTENSIONS=
|
|
41
|
+
CODE_CONTEXT_IGNORE_PATHS=
|
|
9
42
|
|
|
10
|
-
# Port the backend listens on
|
|
11
43
|
PORT=3001
|
|
44
|
+
CLIENT_PORT=5173
|
|
45
|
+
|
|
46
|
+
# Google Drive — folder read (sync). Must be a separate Cloud Console API key; AI Studio keys won't work.
|
|
47
|
+
# Folder must be shared as "Anyone with the link".
|
|
48
|
+
GOOGLE_DRIVE_API_KEY=your-drive-api-key-here
|
|
12
49
|
|
|
13
|
-
#
|
|
14
|
-
#
|
|
50
|
+
# Google Drive — folder write (export). OAuth 2.0 Web Client from Cloud Console.
|
|
51
|
+
# Default redirect URI to register in Google Cloud Console:
|
|
52
|
+
# http://localhost:3001/api/drive/export-callback
|
|
53
|
+
# If you register a different callback, set GOOGLE_EXPORT_REDIRECT_URI explicitly.
|
|
54
|
+
# GOOGLE_EXPORT_REDIRECT_URI=http://localhost:3001/api/drive/export-callback
|
|
55
|
+
GOOGLE_CLIENT_ID=your-client-id-here
|
|
56
|
+
GOOGLE_CLIENT_SECRET=your-client-secret-here
|