Open
Conversation
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
|
Related Documentation 1 document(s) may need updating based on files changed in this PR: Dokploy's Space copilot-instructions
|
Author
|
The |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What is this PR about?
New template for Sim Studio — an open-source AI workflow builder for designing, simulating, and testing multi-agent pipelines with real-time collaboration.
Checklist
Before submitting this PR, please make sure that:
Issues related (if applicable)
N/A
Screenshots or Videos
Services included:
simstudio— main app (port 3000)realtime— WebSocket collaboration server (port 3002)migrations— one-shot init container (runs DB migrations)db— pgvector/pgvector:pg17 (Postgres with vector extension)All secrets (
BETTER_AUTH_SECRET,ENCRYPTION_KEY,INTERNAL_API_SECRET,POSTGRES_PASSWORD) are auto-generated by Dokploy on deploy.Greptile Summary
This PR adds a Sim Studio template — an open-source AI workflow builder with multi-agent support — comprising four services (
simstudio,realtime,migrations,db). The overall architecture is solid: properdepends_onconditions, healthchecks, a one-shot migration container, and auto-generated secrets viatemplate.toml. The apparent Strapi removal inmeta.jsonis benign — it deduplicates an entry that already existed twice in the base branch.However, two mandatory AGENTS.md conventions are violated that must be resolved before merging:
portsinstead ofexpose: Bothsimstudio(3000) andrealtime(3002) useports:— AGENTS.md explicitly forbids this and requiresexpose:so Dokploy's networking layer handles routing.version: "3.8": The top-level Compose version declaration is absent; all blueprints are required to include it.:latestimage tags (P2): All threeghcr.io/simstudioai/*images float on:latest, against the security guideline to pin to specific versions. Themeta.json"version": "latest"should be updated to match once a tag is pinned.Confidence Score: 2/5
portsvsexpose, missingversion: "3.8") that will cause deployment issues on Dokploy.exposeinstead ofports,version: "3.8") are both missing. These are flagged as CRITICAL in the guide and will prevent the template from working correctly in Dokploy's networking model. Once those two fixes are applied (plus optionally pinning image versions), the PR should be ready to merge.blueprints/simstudio/docker-compose.ymlneeds theports→exposechange and theversion: "3.8"header added.Reviews (1): Last reviewed commit: "feat: add Sim Studio template" | Re-trigger Greptile
(2/5) Greptile learns from your feedback when you react with thumbs up/down!
Context used: