forked from zeenie-ai/OpenCompany
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.npmignore
More file actions
103 lines (85 loc) · 1.79 KB
/
Copy path.npmignore
File metadata and controls
103 lines (85 loc) · 1.79 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# ===========================================
# npmignore - Files to exclude from npm package
# ===========================================
# Git
.git/
.gitignore
.github/
# Env files ship with the package — they hold only non-sensitive config
# (ports, paths, feature flags). Credentials live in the encrypted
# ``credentials.db`` (Fernet + PBKDF2 via server/core/encryption.py),
# never in env files. Matches the .gitignore policy.
# Database files
*.db
*.sqlite
*.db-journal
*.db-shm
*.db-wal
# Python cache and virtual env (all locations)
__pycache__/
**/__pycache__/
*.pyc
**/*.pyc
*.pyo
**/*.pyo
.venv/
venv/
**/.venv/
**/venv/
*.egg-info/
# Runtime data dirs — transient, never ship. The lone exception is
# ``.opencompany/workflows/`` (git-tracked shipped example seeds — see
# ``server/services/example_loader.py``), explicitly un-ignored below.
.opencompany/*
!.opencompany/workflows/
# Ignore pre-rebrand local state if it is present in a source checkout.
.machina/*
# Legacy data dir from the pre-cutover layout. Kept as a sentinel so
# stale checkouts from older releases don't accidentally ship.
server/data/
# Node modules (all locations)
node_modules/
**/node_modules/
# Vite cache
.vite/
**/.vite/
# Client build output - INCLUDED in npm package (pre-built)
# client/dist/
# IDE & editors
.vscode/
.idea/
*.sw?
*.suo
*.ntvs*
*.njsproj
*.sln
# OS files
.DS_Store
Thumbs.db
# Logs
*.log
logs/
# Test files
__tests__/
*.test.ts
*.test.js
*.spec.ts
*.spec.js
coverage/
# Internal documentation
docs-internal/
CLAUDE.md
.claude/
# Experiments (work in progress)
server/experiments/
# WhatsApp RPC is now an npm dependency (@anthropic/whatsapp-rpc)
# No local whatsapp-rpc directory to exclude
# Temporary files
*.tmp
*.temp
*.bak
*.backup
*~
# Package lock files
package-lock.json
**/package-lock.json