-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
47 lines (38 loc) · 1.1 KB
/
Copy path.gitignore
File metadata and controls
47 lines (38 loc) · 1.1 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
# wego-ai carried an empty apps/cli/.gitignore because the monorepo root ignored
# everything below it. A standalone repo needs its own: these are the root's
# entries that apply to the CLI, with the monorepo-only paths dropped.
# Dependencies
node_modules/
# Environment files (secrets)
.env
.env.*
!.env.*.example
# Auth & runtime data
**/.env
**/.session.json
**/.browser-profile/
**/.fetch-progress.json
**/.tokens.*.json
# direnv (dev golden path — see .envrc; the cache dir is user-local)
.direnv/
# Claude Code — user-local settings
.claude/settings.local.json
.claude/scheduled_tasks.lock
!.claude/settings.json
# OS / IDE
.DS_Store
.idea/
# Generated from the vendored contract by `api-types:generate`, which
# `postinstall` runs. Committing it would mean a second copy of the contract to
# keep in step, and a stale one is worse than none: Checks A and C would compare
# against a contract the API no longer publishes.
src/api-types.d.ts
# Build output
dist/
*.zip
# Bun `--compile` intermediates (left in the CWD of a `bun build --compile`)
*.bun-build
*.tsbuildinfo
coverage/
# Temp & logs
tmp-*.json