CoolFace
Apppublic

findEthics/Atlas

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
.gitignore168 linesDownload Raw Back to root
1# Claude AI Assistant files2.claude/3.swarm/4.claude-flow/5.kiro/6 7# Environment variables8.env9.env.*10!.env.example11.envrc12 13# Python cache and compiled files14__pycache__/15*.py[cod]16*$py.class17*.so18.Python19 20# Python build artifacts21build/22develop-eggs/23dist/24downloads/25eggs/26.eggs/27lib/28lib64/29parts/30sdist/31var/32wheels/33share/python-wheels/34*.egg-info/35.installed.cfg36*.egg37MANIFEST38pip-log.txt39pip-delete-this-directory.txt40 41# Python testing42.tox/43.nox/44.coverage45.coverage.*46.cache47.pytest_cache/48cover/49htmlcov/50.hypothesis/51 52# Virtual environments53atlas_env/54venv/55env/56ENV/57env.bak/58venv.bak/59.venv/60pyvenv.cfg61 62# IDE and Editor files63.vscode/64.idea/65*.swp66*.swo67*~68.project69.pydevproject70.settings/71*.sublime-project72*.sublime-workspace73 74# OS generated files75.DS_Store76.DS_Store?77._*78.Spotlight-V10079.Trashes80ehthumbs.db81Thumbs.db82Desktop.ini83 84# Logs and temporary files85*.log86*.tmp87*.temp88*.pid89*.seed90*.pid.lock91 92# Test files (exclude from root, but allow in tests/ folder)93/test_*.py94/debug_*.py95/validate_*.py96/deployment_check.py97 98# Database files (be specific about what to ignore)99*.db100*.sqlite101*.sqlite3102/migration_backups/*.json103/backups/*.json104local_data.json105temp_data.json106 107# Cache directories and files108cache/109cache_db/110cache_results/111 112# API Keys and sensitive files113*.key114*.pem115api_keys.txt116secrets.txt117credentials.json118config.json119!requirements.txt120!package.json121 122# Jupyter Notebook123.ipynb_checkpoints124 125# pyenv126.python-version127 128# pipenv129Pipfile.lock130 131# Poetry132poetry.lock133 134# Celery135celerybeat-schedule136celerybeat.pid137 138# SageMath parsed files139*.sage.py140 141# Spyder project settings142.spyderproject143.spyproject144 145# Rope project settings146.ropeproject147 148# mkdocs documentation149/site150 151# mypy152.mypy_cache/153.dmypy.json154dmypy.json155 156# Pyre type checker157.pyre/158 159# pytype static type analyzer160.pytype/161 162# Cython debug symbols163cython_debug/164 165# Backup files166*.bak167*.backup168*~