mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
Blockers fixed: - Rename DockerFile → Dockerfile (case-sensitive fix for Linux CI/Docker) - Fix Docker CMD: semantica.server:app → semantica.explorer.app:app - Add module-level app = create_app() so uvicorn can reference the ASGI app - Remove pre-built static assets from git; add semantica/static/ to .gitignore Security / correctness fixes: - Fix CORS default from "*" to localhost:5173 (explicit env var still overrides) - Add guard to get_ws_manager() — returns 503 instead of AttributeError when unset - Restrict SPARQL endpoint to read-only query types (SELECT/ASK/CONSTRUCT/DESCRIBE) - Add 10 MB upload size limit to vocabulary import route - Add JSON-LD format auto-detection (.jsonld / .json-ld / .json) in vocabulary import Code quality fixes: - Replace O(N) annotation scan in create_annotation with O(1) get_annotation() lookup - Add get_annotation(ann_id) method to GraphSession - Add self-loop guard in batchMergeEdges (graph has allowSelfLoops: false) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
116 lines
1.2 KiB
Plaintext
116 lines
1.2 KiB
Plaintext
# MkDocs
|
|
site/
|
|
.mkdocs_cache/
|
|
|
|
# Testing
|
|
/coverage
|
|
htmlcov/
|
|
.coverage
|
|
.coverage.*
|
|
coverage.xml
|
|
*.cover
|
|
.pytest_cache/
|
|
.tox/
|
|
|
|
# Environment variables and secrets
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.env
|
|
.env.local
|
|
.env.development.local
|
|
.env.test.local
|
|
.env.production.local
|
|
|
|
# API Keys and Secrets
|
|
*.key
|
|
*.pem
|
|
*.p12
|
|
*.pfx
|
|
secrets/
|
|
*.secret
|
|
config/secrets.yaml
|
|
config/secrets.yml
|
|
credentials.json
|
|
credentials.yaml
|
|
*.credentials
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
env/
|
|
venv/
|
|
ENV/
|
|
.venv/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
.python-version
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
Desktop.ini
|
|
|
|
# Logs
|
|
*.log
|
|
*.log.*
|
|
logs/
|
|
*.cache
|
|
|
|
# Test data and databases
|
|
test_data/
|
|
sample_data/
|
|
*.test.db
|
|
*.test.sqlite
|
|
*.test.sqlite3
|
|
*.db-journal
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
*.old
|
|
*.orig
|
|
|
|
# Personal/Development
|
|
.personal/
|
|
.local/
|
|
*.local
|
|
|
|
# Test Results
|
|
test_results.txt
|
|
|
|
# Frontend build artifacts (generated by Vite — do not track in git)
|
|
semantica/static/
|