[PR #230] [MERGED] [WIP] Fullstack deployment example wrap-up #338

Closed
opened 2026-02-16 01:16:57 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/run-llama/llama_deploy/pull/230
Author: @logan-markewich
Created: 9/5/2024
Status: Merged
Merged: 9/5/2024
Merged by: @logan-markewich

Base: v0.1.0Head: logan/finish_fullstack_example


📝 Commits (10+)

📊 Changes

18 files changed (+179 additions, -62 deletions)

View changed files

📝 examples/python_fullstack/docker-compose.yml (+56 -28)
📝 examples/python_fullstack/llama_deploy_app/control_plane/deploy.py (+1 -1)
📝 examples/python_fullstack/llama_deploy_app/control_plane/dockerfile (+1 -2)
examples/python_fullstack/llama_deploy_app/control_plane/requirements.txt (+1 -0)
examples/python_fullstack/llama_deploy_app/core_serivces/.env (+0 -4)
examples/python_fullstack/llama_deploy_app/core_serivces/requirements.txt (+0 -1)
📝 examples/python_fullstack/llama_deploy_app/frontend/frontend/state.py (+26 -2)
📝 examples/python_fullstack/llama_deploy_app/frontend/requirements.txt (+1 -0)
examples/python_fullstack/llama_deploy_app/message_queue/deploy.py (+17 -0)
examples/python_fullstack/llama_deploy_app/message_queue/dockerfile (+19 -0)
examples/python_fullstack/llama_deploy_app/message_queue/requirements.txt (+1 -0)
📝 examples/python_fullstack/llama_deploy_app/workflows/agent_workflow.py (+6 -1)
📝 examples/python_fullstack/llama_deploy_app/workflows/deploy.py (+1 -4)
📝 examples/python_fullstack/llama_deploy_app/workflows/dockerfile (+1 -1)
📝 examples/python_fullstack/llama_deploy_app/workflows/rag_workflow.py (+6 -1)
📝 examples/python_fullstack/llama_deploy_app/workflows/requirements.txt (+1 -1)
📝 llama_deploy/services/workflow.py (+40 -15)
📝 pyproject.toml (+1 -1)

📄 Description

No description provided


���� This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/run-llama/llama_deploy/pull/230 **Author:** [@logan-markewich](https://github.com/logan-markewich) **Created:** 9/5/2024 **Status:** ✅ Merged **Merged:** 9/5/2024 **Merged by:** [@logan-markewich](https://github.com/logan-markewich) **Base:** `v0.1.0` ← **Head:** `logan/finish_fullstack_example` --- ### 📝 Commits (10+) - [`4910657`](https://github.com/run-llama/llama_deploy/commit/49106576ea00ad35a6e4eab87eb3cfaa38c18bcc) latest - [`fdffe7a`](https://github.com/run-llama/llama_deploy/commit/fdffe7a1a88560f44988a67a23953bd665130680) [fix] priority of control plane config url (#224) - [`44849ac`](https://github.com/run-llama/llama_deploy/commit/44849acf652dd65fef8b81858f2e6d0d815368bc) [fix] priority simple message queue (#225) - [`aedf214`](https://github.com/run-llama/llama_deploy/commit/aedf2144011c2f31ab60117a93451112542608ab) [fix] KafkaMessageQueue add `kwargs` to init (#226) - [`7c69a4a`](https://github.com/run-llama/llama_deploy/commit/7c69a4a6ddeaaf0c9a78b20caee52b9c8933e90d) Logan/disable deployments (#227) - [`13c7240`](https://github.com/run-llama/llama_deploy/commit/13c7240fad659c9a996dfbf2e1737d82137b40d9) merge main - [`007b4d4`](https://github.com/run-llama/llama_deploy/commit/007b4d4353e4a84ca3a1829d3a81fd3ba5d407de) disable workflow state saving - [`df625ef`](https://github.com/run-llama/llama_deploy/commit/df625efff6a9997d41fd6f7b97ea278bee63f985) WIP fullstack example - [`2f010d2`](https://github.com/run-llama/llama_deploy/commit/2f010d244a13a067119fa87ec8c2a0f404d87068) vbumps - [`d2e7772`](https://github.com/run-llama/llama_deploy/commit/d2e777297b1b075af0c0bf57ab4175a934c352f7) Merge branch 'v0.1.0' into logan/finish_fullstack_example ### 📊 Changes **18 files changed** (+179 additions, -62 deletions) <details> <summary>View changed files</summary> 📝 `examples/python_fullstack/docker-compose.yml` (+56 -28) 📝 `examples/python_fullstack/llama_deploy_app/control_plane/deploy.py` (+1 -1) 📝 `examples/python_fullstack/llama_deploy_app/control_plane/dockerfile` (+1 -2) ➕ `examples/python_fullstack/llama_deploy_app/control_plane/requirements.txt` (+1 -0) ➖ `examples/python_fullstack/llama_deploy_app/core_serivces/.env` (+0 -4) ➖ `examples/python_fullstack/llama_deploy_app/core_serivces/requirements.txt` (+0 -1) 📝 `examples/python_fullstack/llama_deploy_app/frontend/frontend/state.py` (+26 -2) 📝 `examples/python_fullstack/llama_deploy_app/frontend/requirements.txt` (+1 -0) ➕ `examples/python_fullstack/llama_deploy_app/message_queue/deploy.py` (+17 -0) ➕ `examples/python_fullstack/llama_deploy_app/message_queue/dockerfile` (+19 -0) ➕ `examples/python_fullstack/llama_deploy_app/message_queue/requirements.txt` (+1 -0) 📝 `examples/python_fullstack/llama_deploy_app/workflows/agent_workflow.py` (+6 -1) 📝 `examples/python_fullstack/llama_deploy_app/workflows/deploy.py` (+1 -4) 📝 `examples/python_fullstack/llama_deploy_app/workflows/dockerfile` (+1 -1) 📝 `examples/python_fullstack/llama_deploy_app/workflows/rag_workflow.py` (+6 -1) 📝 `examples/python_fullstack/llama_deploy_app/workflows/requirements.txt` (+1 -1) 📝 `llama_deploy/services/workflow.py` (+40 -15) 📝 `pyproject.toml` (+1 -1) </details> ### 📄 Description _No description provided_ --- <sub>���� This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-16 01:16:57 -05:00
yindo closed this issue 2026-02-16 01:16:57 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: run-llama/llama_deploy#338