mirror of
https://github.com/temporal-community/temporal-ai-agent.git
synced 2026-03-15 14:08:08 +01:00
* uvx migrate-to-uv
* uv migration
* Fix hatch build
* Fixup
* uv run
* Add tab completion to devcontainer uv
Co-authored-by: Simon Emms <simon@simonemms.com>
* Revert "Add tab completion to devcontainer uv"
This reverts commit a3b7bdd84b.
---------
Co-authored-by: Simon Emms <simon@simonemms.com>
21 lines
488 B
YAML
21 lines
488 B
YAML
services:
|
|
api:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: uv run uvicorn api.main:app --host 0.0.0.0 --port 8000 --reload
|
|
|
|
worker:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: uv run scripts/run_worker.py
|
|
|
|
train-api:
|
|
volumes:
|
|
- ./:/app:cached
|
|
command: uv run thirdparty/train_api.py
|
|
|
|
frontend:
|
|
volumes:
|
|
- ./frontend:/app:cached
|
|
command: sh -c "apk update && apk add --no-cache xdg-utils && npm install && npx vite --host 0.0.0.0 --port 5173"
|