mirror of
https://github.com/semantica-agi/semantica.git
synced 2026-08-29 04:26:20 +00:00
- Add essential open source files (CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, CHANGELOG.md, CONTRIBUTORS.md) - Add GitHub issue and PR templates - Add CI/CD workflows (CI, docs, release, dependabot) - Add pre-commit hooks configuration - Add documentation enhancements (architecture, governance, contributing, community) - Add developer experience scripts (setup-dev, run-tests, format-code, check-code) - Add community features (SUPPORT.md, .all-contributorsrc) - Enhance README badges and project metadata - Update mkdocs.yml navigation structure - Enhance .gitignore with security patterns
109 lines
1.0 KiB
Plaintext
109 lines
1.0 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
|
|
|
|
# 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
|