feat: Initialize Storyline AI Gateway project with a local run script and Docker configuration files.

This commit is contained in:
2026-01-28 03:41:57 +08:00
parent 94db6e7f2c
commit c32cff0388
4 changed files with 103 additions and 0 deletions

13
docker-compose.yml Normal file
View File

@@ -0,0 +1,13 @@
services:
api:
build: .
container_name: storyline-ai-gateway
ports:
- "8000:8000"
env_file:
- .env
restart: always
volumes:
- .:/app
# Override command for development/auto-reload if needed
command: uvicorn app.main:app --host 0.0.0.0 --port 8000 --reload