feat: add Rallly template#858
Closed
NoeFabris wants to merge 2 commits into
Closed
Conversation
Author
|
/claim #152 |
built with Refined Cloudflare Pages Action⚡ Cloudflare Pages Deployment
|
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new Dokploy blueprint for deploying the open-source Rallly scheduling app, including bundled PostgreSQL and bundled Garage (S3-compatible) object storage, and updates meta.json accordingly (also removing a duplicate strapi entry as part of reprocessing).
Changes:
- Added the
blueprints/rallly/template (compose, Dokploy config, logo, and usage notes). - Registered the new template in
meta.jsonand removed a duplicatestrapimetadata entry.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| meta.json | Adds rallly metadata entry; removes a duplicate strapi entry to keep the index deduped/sorted. |
| blueprints/rallly/template.toml | Defines Dokploy variables/env and generates a garage.toml config mount. |
| blueprints/rallly/docker-compose.yml | Adds Rallly + Postgres + Garage services with volumes and healthchecks. |
| blueprints/rallly/instructions.md | Notes SMTP setup requirement for real usage. |
| blueprints/rallly/rallly.svg | Adds the template logo asset. |
| host = "${main_domain}" | ||
|
|
||
| [config.env] | ||
| NEXT_PUBLIC_BASE_URL = "https://${main_domain}" |
|
|
||
| db_engine = "sqlite" | ||
| replication_factor = 1 | ||
| rpc_bind_addr = "[::]:3901" |
|
|
||
| services: | ||
| rallly: | ||
| image: lukevella/rallly:4 |
| { | ||
| "id": "rallly", | ||
| "name": "Rallly", | ||
| "version": "4", |
Author
|
Addressed the review items in cfca734:
Local validation run:
|
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.
Summary
strapimetadata entry someta.jsonremains deduplicated and sorted.Closes #121.
Related to #152.
/claim #152
Validation
node dedupe-and-sort-meta.jsnode build-scripts/process-meta.js --verbose --output /tmp/meta-test.json && diff -q meta.json /tmp/meta-test.jsonnpx -p pnpm@10 pnpm exec tsx validate-template.ts --dir ../blueprints/rallly --verbosenpx -p pnpm@10 pnpm exec tsx validate-docker-compose.ts --file ../blueprints/rallly/docker-compose.yml --verbosenpx -p pnpm@10 pnpm buildfromapp/