返回 ViMax
.gitignore
根目录 / .gitignore
1 # Python-generated files
2 __pycache__/
3 *.py[oc]
4 build/
5 dist/
6 wheels/
7 *.egg-info
8
9 # Virtual environments
10 .venv
11
12 # working directory
13 .working_dir/
14 .vimax/
15 .test/
16
17 # Local environment files
18 .env
19 .env.*
20 !.env.example
21
22 # Node dependencies
23 node_modules/
24
25 # Local agent secrets
26 configs/*.local.json
27 configs/*.local.yaml
28
29 # Internal planning and local instructions
30 AGENTS.md
31 project_plan/
32 project_working/
33 user_idea/
34
34 lines Plain Text