mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
104 lines
1.3 KiB
Plaintext
104 lines
1.3 KiB
Plaintext
# Start with a tiny Docker context and opt in only files used by Dockerfile.
|
|
*
|
|
!Dockerfile
|
|
!.dockerignore
|
|
!pyproject.toml
|
|
!README.md
|
|
!LICENSE
|
|
!MANIFEST.in
|
|
!semantica/
|
|
!semantica/**
|
|
!integrations/
|
|
!integrations/**
|
|
!explorer/
|
|
!explorer/**
|
|
|
|
# VCS, local config, and secrets.
|
|
.git
|
|
.git/**
|
|
.github
|
|
.github/**
|
|
.claude
|
|
.claude/**
|
|
.codex
|
|
.codex/**
|
|
.agents
|
|
.agents/**
|
|
.env
|
|
.env.*
|
|
*.env
|
|
|
|
# Python build/test/cache artifacts.
|
|
__pycache__
|
|
**/__pycache__
|
|
*.py[cod]
|
|
.pytest_cache
|
|
.pytest_cache/**
|
|
.mypy_cache
|
|
.mypy_cache/**
|
|
.ruff_cache
|
|
.ruff_cache/**
|
|
.tox
|
|
.tox/**
|
|
.venv
|
|
.venv/**
|
|
venv
|
|
venv/**
|
|
coverage
|
|
coverage/**
|
|
htmlcov
|
|
htmlcov/**
|
|
*.egg-info
|
|
*.egg-info/**
|
|
build
|
|
build/**
|
|
dist
|
|
dist/**
|
|
|
|
# Frontend dependency/build artifacts.
|
|
node_modules
|
|
node_modules/**
|
|
explorer/node_modules
|
|
explorer/node_modules/**
|
|
explorer/dist
|
|
explorer/dist/**
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
|
|
# Local outputs and large generated samples.
|
|
logs
|
|
logs/**
|
|
*.log
|
|
*.tmp
|
|
*.bak
|
|
*.backup
|
|
tests
|
|
tests/**
|
|
explorer/tests
|
|
explorer/tests/**
|
|
docs
|
|
docs/**
|
|
site
|
|
site/**
|
|
.mkdocs_cache
|
|
.mkdocs_cache/**
|
|
cookbook
|
|
cookbook/**
|
|
examples
|
|
examples/**
|
|
demo_assets
|
|
demo_assets/**
|
|
demo_out
|
|
demo_out/**
|
|
demo_out_*
|
|
demo_out_*/**
|
|
outputs
|
|
outputs/**
|
|
pytest-cache-files-*
|
|
pytest-cache-files-*/**
|
|
test_data
|
|
test_data/**
|
|
sample_data
|
|
sample_data/**
|