返回 JoyAI-Echo
.gitignore
1 # Secrets and machine-local configuration
2 .env
3 .env.*
4 !.env.example
5 .config.json
6 .config.*.json
7 !.config.local.example.json
8 *.pem
9 *.key
10 *.p12
11 *.pfx
12 credentials.json
13 secrets/
14
15 # Echo Director Agent runtime state
16 .workspace/
17 .local-workspace/
18 .local-runtime/
19 .assets/
20 .docs/
21 .web/
22 .orion/
23 .nanobot/
24 media/
25 logs/
26 tmp/
27 temp/
28 *.log
29 *.pid
30 *.tmp
31 startAgent.sh
32 .nginx.conf
33
34 # Python and uv
35 __pycache__/
36 *.py[cod]
37 *.pyw
38 *.pyz
39 *.egg
40 *.egg-info/
41 .venv/
42 venv/
43 .pytest_cache/
44 .mypy_cache/
45 .ruff_cache/
46 .pytype/
47 .hypothesis/
48 .tox/
49 .nox/
50 .coverage
51 .coverage.*
52 coverage.xml
53 htmlcov/
54 build/
55 dist/
56 pip-wheel-metadata/
57 share/python-wheels/
58
59 # Node, Vite, and frontend build output
60 node_modules/
61 **/node_modules/
62 webui/dist/
63 webui/coverage/
64 webui/.vite/
65 **/webui-new/
66 *.tsbuildinfo
67 npm-debug.log*
68 yarn-debug.log*
69 yarn-error.log*
70 pnpm-debug.log*
71
72 # Jupyter
73 .ipynb_checkpoints/
74
75 # Editors and IDEs
76 .vscode/
77 .cursor/
78 .idea/
79 .fleet/
80 *.code-workspace
81 *.sublime-project
82 *.sublime-workspace
83 *.swp
84 *.swo
85 *~
86 nano.*.save
87
88 # Operating-system metadata
89 .DS_Store
90 .AppleDouble
91 .LSOverride
92 Thumbs.db
93 ehthumbs.db
94 Desktop.ini
95 .directory
96
96 lines Plain Text