Files
text-adventure-llm/.gitignore
Aodhan Collins 912b205699 Initial commit.
Basic docker deployment with Local LLM integration and simple game state.
2025-08-17 19:31:33 +01:00

66 lines
633 B
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
*.pyd
*.pyo
# Virtual environments
.venv/
venv/
env/
ENV/
# Packaging
build/
dist/
*.egg-info/
.eggs/
pip-wheel-metadata/
# Testing and coverage
.coverage
.coverage.*
htmlcov/
.tox/
.nox/
.pytest_cache/
.cache/
.mypy_cache/
.pytype/
.ruff_cache/
.pyre/
# Editor and OS files
.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo
# Environment variables
.env
.env.*
!.env.example
# Logs and temp
logs/
*.log
tmp/
temp/
# Application data (runtime)
data/sessions/
# Node (if ever used for frontends)
node_modules/
# pyenv
.python-version
# Jupyter
.ipynb_checkpoints/