forked from multica-ai/multica
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitignore
More file actions
82 lines (71 loc) · 1.65 KB
/
Copy path.gitignore
File metadata and controls
82 lines (71 loc) · 1.65 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
node_modules
dist
*.log
.DS_Store
.envrc
# build outputs
.turbo
.next
out
build
bin
dist-electron
*.tsbuildinfo
# ...except electron-builder's source resources dir, which holds tracked
# config files (entitlements, icons) — not build output.
!apps/desktop/build/
!apps/desktop/build/**
# env
.env*
!.env.example
# Desktop production config is public (backend URL, etc.) — track it so
# `pnpm package` produces a release-ready build without extra setup.
!apps/desktop/.env.production
# Desktop staging config is public (staging API/web URLs) — track it so
# `pnpm dev:desktop:staging` works from a fresh checkout instead of relying
# on a hand-written local env file (MUL-5025: a misnamed VITE_ var there
# silently broke copy-link URLs).
!apps/desktop/.env.staging
# Mobile staging config is public (staging API URL) — track it so a fresh
# checkout can run `pnpm dev:mobile:staging` / `ios:mobile*:staging` without
# the user having to copy `.env.example` first.
!apps/mobile/.env.staging
# Mobile production config is public (production API URL) — track it so
# external users can run `pnpm ios:mobile:device:prod:release` against
# multica.ai's production backend without copying templates first.
!apps/mobile/.env.production
# test coverage
coverage
# Go
server/bin/
server/tmp/
server/migrate
server/daemon
server/multica
# Test artifacts
test-results/
apps/web/test-results/
# context (agent workspace)
.context
.agent_context/
.multica/
# local settings
.claude/
.tool-versions
# feature tracking
_features/
# runtime
*.pid
# platform specific
*.dmg
*.app
server/server
data/
.kilo
.idea
deploy.md
.gstack/
# Python (agent tooling)
__pycache__/
*.pyc
perf-report/