Skip to content

Commit 6edfccf

Browse files
committed
fix: Remove large files and add .gitignore
CLEANUP LARGE FILES: - Removed reports/k6_seal_test/results.json (415MB) - Removed stillme_deployment.tar.gz (127MB) - Removed stillme_deployment.zip (566MB) - Added comprehensive .gitignore RESULT: Repository ready for GitHub push!
1 parent 5a3bf28 commit 6edfccf

1 file changed

Lines changed: 42 additions & 119 deletions

File tree

.gitignore

Lines changed: 42 additions & 119 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1,56 @@
1-
# ─────────────────────────────────────────────────────────────
2-
# StillMe / AgentDev .gitignore (Python-first, CI-friendly)
3-
# ─────────────────────────────────────────────────────────────
1+
# Large files and build artifacts
2+
*.tar.gz
3+
*.zip
4+
reports/k6_seal_test/results.json
5+
stillme_deployment.*
6+
stillme_lightweight_deployment.*
47

5-
########## Python bytecode / build ##########
6-
__pycache__/
7-
*.py[cod]
8-
*$py.class
8+
# Node modules
9+
node_modules/
10+
stillme_platform/desktop/node_modules/
911

10-
build/
11-
dist/
12-
*.whl
13-
.eggs/
14-
*.egg-info/
15-
.installed.cfg
16-
MANIFEST
12+
# Python cache
13+
__pycache__/
14+
*.pyc
15+
*.pyo
16+
*.pyd
17+
.Python
18+
*.so
1719

18-
########## Virtual envs ##########
20+
# Virtual environments
1921
.venv/
2022
venv/
2123
env/
22-
ENV/
23-
env.bak/
24-
venv.bak/
2524

26-
########## Test / Coverage / Bench ##########
27-
.pytest_cache/
28-
.tox/
29-
.nox/
30-
.hypothesis/
31-
.coverage
32-
.coverage.*
33-
coverage/
34-
coverage.xml
35-
htmlcov/
36-
.benchmarks/
25+
# IDE files
26+
.vscode/
27+
.idea/
28+
*.swp
29+
*.swo
3730

38-
########## Linters / Type checkers ##########
39-
.ruff_cache/
40-
.mypy_cache/
41-
.pytype/
42-
.pyre/
31+
# OS files
32+
.DS_Store
33+
Thumbs.db
4334

44-
########## Logs / Reports / Artifacts ##########
45-
logs/
35+
# Logs
4636
*.log
47-
reports/
48-
artifacts/
49-
test-results/
50-
playwright-report/
51-
playwright/.cache/
52-
53-
########## Datasets / Models (local only) ##########
54-
datasets/
55-
data/
56-
*.csv
57-
*.tsv
58-
*.jsonl
59-
*.parquet
60-
models/
61-
*.pt
62-
*.bin
63-
*.onnx
64-
*.h5
65-
*.pkl
66-
*.joblib
67-
*.zip
68-
*.7z
69-
70-
########## Security / Secrets ##########
71-
.env
72-
.env.*
73-
*.key
74-
*.pem
75-
*.pfx
76-
*.p12
77-
*.crt
78-
*.cer
79-
*.der
80-
config/local.yaml
81-
config/production.yaml
82-
config/staging.yaml
83-
84-
########## Sandbox / Temp ##########
85-
tmp/
86-
temp/
87-
cache/
88-
.quarantine/
89-
quarantine/
90-
_graveyard/
91-
92-
########## Jupyter / Notebooks ##########
93-
.ipynb_checkpoints/
37+
logs/
9438

95-
########## Docs builders ##########
96-
docs/_build/
97-
.site/
98-
.docusaurus/
99-
.vuepress/dist/
39+
# Database files
40+
*.db
41+
*.sqlite
42+
*.sqlite3
10043

101-
########## Node / Frontend (nếu có) ##########
102-
node_modules/
103-
.npm/
104-
.pnpm-debug.log*
105-
npm-debug.log*
106-
yarn-debug.log*
107-
yarn-error.log*
108-
.yarn/
109-
web_modules/
110-
.next/
111-
.nuxt/
112-
out/
113-
.dist/
114-
115-
########## IDE / Editors ##########
116-
.vscode/
117-
.idea/
118-
*.iml
119-
*.ipr
120-
*.iws
121-
.history/
122-
.vscode-test/
44+
# Coverage reports
45+
htmlcov/
46+
.coverage
47+
coverage.xml
12348

124-
########## OS junk ##########
125-
.DS_Store
126-
Thumbs.db
127-
ehthumbs.db
128-
.Spotlight-V100
129-
.Trashes
49+
# Test artifacts
50+
.pytest_cache/
51+
.tox/
13052

131-
# ─────────────────────────────────────────────────────────────
132-
# END
133-
# ─────────────────────────────────────────────────────────────
53+
# Temporary files
54+
temp/
55+
tmp/
56+
*.tmp

0 commit comments

Comments
 (0)