feat(catalog): add Louez - #576
Open
loan-talvat wants to merge 1 commit into
Open
Conversation
Equipment rental platform: a booking storefront with live availability and a back office for reservations, customers and PDF contracts. Three services: the app, MySQL 8.4 and MinIO for product photos. The app creates its own database schema on first boot; a prepare step creates the image bucket once MinIO answers.
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.
Adds Louez to the one-click catalog — an AGPL-3.0 equipment rental platform: a booking storefront with live availability for customers, and a back office for reservations, pickups and returns, customers, PDF contracts and revenue statistics. It fills a gap in the catalog: rental of physical goods, which none of the current 28 apps cover.
The template
Three services, following
guides/add-an-app:louezsynapsr/louez:2.1.0louez-dbmysql:8.4mysqladmin pinghealthchecklouez-storageminio/minio:RELEASE.2025-09-07T16-13-09ZEvery credential is generated: the MySQL password flows into the app's
DATABASE_URLthrough{{config:MYSQL_PASSWORD}}, the MinIO password intoS3_SECRET_ACCESS_KEY, andAUTH_SECRETis its own generated field.AUTH_URLandNEXT_PUBLIC_APP_URLcome from{{publicUrl:louez}}— the app binds sign-in to that origin.The bucket is created by a
preparestep rather than a fourth container:mc mb --ignore-existing local/louez,phase: post-readywith a readiness poll onmc alias set, so it is re-run safe. The bucket stays private — Louez streams images same-origin under/fileswith its own credentials, which is why the storage service is not exposed.What was verified
bun scripts/gen-catalog.tsregeneratedcatalog.json(the diff is a pure addition, no drift).isValidAppTemplate(louez)→true,parseAppTemplate→ ok, and all 29 apps still validate.louez.jsonvalidates againsthttps://openship.io/app.schema.json.availableis leftfalseas CONTRIBUTING asks, since I have not yet run it on a real Openship instance — happy to flip it once someone does, or to adjust anything that does not match house style.One detail:
logo: "louez"is not a simpleicons slug, so it will fall back to the role glyph. Tell me where vendored SVGs live and I will add the mark.