Initial commit.

Basic docker deployment with Local LLM integration and simple game state.
This commit is contained in:
Aodhan Collins
2025-08-17 19:31:33 +01:00
commit 912b205699
30 changed files with 2476 additions and 0 deletions

20
docker-compose.yml Normal file
View File

@@ -0,0 +1,20 @@
version: '3.8'
services:
text-adventure:
build: .
container_name: text-adventure-app
stdin_open: true
tty: true
volumes:
# Mount the current directory to /app for development
- .:/app
environment:
# Environment variables can be set here
- PYTHONUNBUFFERED=1
# If you need to connect to a service on the host machine
# network_mode: "host"
# For production, you might want to use:
ports:
- "8000:8000"