https://github.com/libredb/caprover-one-click-apps
LibreDB's CapRover one-click app repository. Add as a 3rd-party repo in CapRover to install LibreDB Studio and friends.
https://github.com/libredb/caprover-one-click-apps
Last synced: 5 days ago
JSON representation
LibreDB's CapRover one-click app repository. Add as a 3rd-party repo in CapRover to install LibreDB Studio and friends.
- Host: GitHub
- URL: https://github.com/libredb/caprover-one-click-apps
- Owner: libredb
- Created: 2026-06-13T21:49:24.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2026-06-13T22:05:39.000Z (about 1 month ago)
- Last Synced: 2026-06-14T00:09:16.815Z (about 1 month ago)
- Language: JavaScript
- Size: 29.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LibreDB — CapRover One-Click Apps
LibreDB's own [CapRover](https://caprover.com) one-click-app repository. Add it
as a **3rd-party repository** in CapRover to install LibreDB apps in one click —
available immediately, independent of the official `caprover/one-click-apps`
review queue.
## Add this repository to CapRover
1. Open your CapRover dashboard → **Apps** → **One-Click Apps/Databases**.
2. Scroll to the bottom, to **3rd party repositories**.
3. Paste this URL and click **Connect New Repository**:
```
https://libredb.org/caprover-one-click-apps
```
4. Search for **LibreDB Studio** and install.
## Apps
| App | Description |
|-----|-------------|
| **LibreDB Studio** | Open-source web-based SQL IDE — query PostgreSQL, MySQL, SQLite, Oracle, SQL Server, MongoDB & Redis from the browser, with AI-powered query assistance. |
## How it works
- App definitions live under `public/v4/apps/*.yml` with logos in
`public/v4/logos/*.png` — the same `captainVersion: 4` format as the official
repo. The source of truth for LibreDB Studio is maintained in
[`libredb/libredb-studio` → `deploy/caprover/`](https://github.com/libredb/libredb-studio/tree/main/deploy/caprover).
- On every push to `main`, the GitHub Actions workflow validates the templates,
builds the static catalog into `dist/`, and deploys it to GitHub Pages. CapRover
then reads `…/v4/list`, `…/v4/apps/` and `…/v4/logos/.png` from the
published site.
## Local development
```bash
npm install
npm run validate_apps # validate every app template + logo
npm run formatter # prettier check (use formatter-write to fix)
npm run build # build the static catalog into ./dist
```
## Adding / updating an app
1. Add or edit `public/v4/apps/.yml` and add `public/v4/logos/.png`.
2. Run `npm run validate_apps && npm run formatter`.
3. Commit to `main` — GitHub Actions publishes automatically.
---
Looking for the manual install or the official-repo submission? See
[`libredb/libredb-studio` → `deploy/caprover/`](https://github.com/libredb/libredb-studio/tree/main/deploy/caprover).