Initial commit.
Basic docker deployment with Local LLM integration and simple game state.
This commit is contained in:
66
.gitignore
vendored
Normal file
66
.gitignore
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
# 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/
|
||||
Reference in New Issue
Block a user