feat: per-template metadata — eliminate meta.json merge conflicts

- move each template's metadata to blueprints/<id>/meta.json (442 files, byte-identical roundtrip with the old root meta.json)
- generate the served meta.json at build time into app/public/meta.json (gitignored); pnpm dev/build run the generator first
- CI validates every blueprints/<id>/meta.json via generate-meta.js --check (required fields, id/folder match, logo exists, folder<->meta bidirectionality) and rejects any committed root meta.json
- remove root meta.json, dedupe-and-sort-meta.js and build-scripts/process-meta.js (obsolete)
- update CONTRIBUTING.md, AGENTS.md and README.md

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Mauricio Siu
2026-07-07 23:58:10 -06:00
parent 6a6ab5ac17
commit c3de62fb83
455 changed files with 7982 additions and 8469 deletions

View File

@@ -1,12 +1,18 @@
name: Validate and Process Meta.json
name: Validate Template Metadata
on:
push:
branches: [canary]
paths: ["meta.json"]
paths:
- "blueprints/**"
- "build-scripts/generate-meta.js"
- "meta.json"
pull_request:
branches: [canary]
paths: ["meta.json"]
paths:
- "blueprints/**"
- "build-scripts/generate-meta.js"
- "meta.json"
workflow_dispatch:
jobs:
@@ -17,64 +23,19 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- name: Reject root meta.json
run: |
if [ -f "meta.json" ]; then
echo "❌ The root meta.json is generated at build time and must not be committed."
echo " Add your template's metadata to blueprints/<id>/meta.json instead."
exit 1
fi
echo "✅ No root meta.json present"
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "18"
node-version: "20"
- name: Validate meta.json structure
run: |
echo "🔍 Validating meta.json structure..."
node -e "
const fs = require('fs');
const data = JSON.parse(fs.readFileSync('meta.json', 'utf8'));
if (!Array.isArray(data)) throw new Error('meta.json must be an array');
console.log('✅ meta.json structure is valid');
console.log('📊 Found', data.length, 'entries');
"
- name: Check for duplicates and sort order
run: |
echo "🔍 Checking for duplicates and sort order..."
node build-scripts/process-meta.js --verbose --output /tmp/meta-test.json
- name: Compare with original
run: |
echo "🔍 Comparing processed file with original..."
if ! diff -q meta.json /tmp/meta-test.json > /dev/null; then
echo "⚠️ meta.json needs processing (duplicates found or not sorted)"
echo "Original entries:"
node -e "console.log(JSON.parse(require('fs').readFileSync('meta.json', 'utf8')).length)"
echo "Processed entries:"
node -e "console.log(JSON.parse(require('fs').readFileSync('/tmp/meta-test.json', 'utf8')).length)"
echo ""
echo "To fix this, run: npm run process-meta"
exit 1
else
echo "✅ meta.json is properly deduplicated and sorted"
fi
- name: Validate required fields
run: |
echo "🔍 Validating required fields..."
node -e "
const fs = require('fs');
const data = JSON.parse(fs.readFileSync('meta.json', 'utf8'));
const required = ['id', 'name', 'version', 'description', 'links', 'logo', 'tags'];
let issues = 0;
data.forEach((item, index) => {
const missing = required.filter(field => !item[field]);
if (missing.length > 0) {
console.log('❌ Entry', index, '(' + item.id + '):', 'Missing fields:', missing.join(', '));
issues++;
}
});
if (issues > 0) {
console.log('🚨 Found', issues, 'entries with missing required fields');
process.exit(1);
} else {
console.log('✅ All entries have required fields');
}
"
- name: Validate per-template metadata
run: node build-scripts/generate-meta.js --check

View File

@@ -49,133 +49,10 @@ jobs:
echo "✅ Blueprint folders validated successfully."
fi
- name: Validate meta.json structure and required fields
run: |
echo "🔍 Validating meta.json structure and required fields..."
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
# First check if meta.json exists and is valid JSON
if [ ! -f "meta.json" ]; then
echo "❌ meta.json file not found"
exit 1
fi
if ! jq empty meta.json 2>/dev/null; then
echo "❌ meta.json is not a valid JSON file"
exit 1
fi
ERROR=0
ERRORS_FOUND=""
# Debug: Show total number of entries
TOTAL_ENTRIES=$(jq '. | length' meta.json)
echo "📊 Total entries in meta.json: $TOTAL_ENTRIES"
# Get all entries at once and process them
TOTAL_INDEX=$(($TOTAL_ENTRIES - 1))
for i in $(seq 0 $TOTAL_INDEX); do
entry=$(jq -c ".[$i]" meta.json)
INDEX=$((i + 1))
echo "-------------------------------------------"
echo "🔍 Checking entry #$INDEX..."
# Get the ID for better error reporting
ID=$(echo "$entry" | jq -r '.id // "UNKNOWN"')
echo "📝 Processing entry with ID: $ID"
# Validate required top-level fields
for field in "id" "name" "version" "description" "logo" "links" "tags"; do
if [ "$(echo "$entry" | jq "has(\"$field\")")" != "true" ]; then
ERROR_MSG="❌ Entry #$INDEX (ID: $ID) is missing required field: $field"
echo "$ERROR_MSG"
ERRORS_FOUND="${ERRORS_FOUND}${ERROR_MSG}\n"
ERROR=1
fi
done
# Validate links object required fields
if [ "$(echo "$entry" | jq 'has("links")')" == "true" ]; then
for link_field in "github" "website" "docs"; do
if [ "$(echo "$entry" | jq ".links | has(\"$link_field\")")" != "true" ]; then
ERROR_MSG="❌ Entry #$INDEX (ID: $ID): links object is missing required field: $link_field"
echo "$ERROR_MSG"
ERRORS_FOUND="${ERRORS_FOUND}${ERROR_MSG}\n"
ERROR=1
fi
done
fi
# Validate tags array is not empty
if [ "$(echo "$entry" | jq '.tags | length')" -eq 0 ]; then
ERROR_MSG="❌ Entry #$INDEX (ID: $ID): tags array cannot be empty"
echo "$ERROR_MSG"
ERRORS_FOUND="${ERRORS_FOUND}${ERROR_MSG}\n"
ERROR=1
fi
done
echo "-------------------------------------------"
if [ $ERROR -eq 1 ]; then
echo "❌ meta.json structure validation failed."
echo -e "Summary of all errors found:${ERRORS_FOUND}"
exit 1
else
echo "✅ meta.json structure validated successfully."
fi
- name: Validate meta.json matches blueprint folders and logo files
run: |
echo "🔍 Validating meta.json against blueprint folders and logos..."
ERROR=0
# Read all blueprint folder names into an array
FOLDERS=($(ls -1 blueprints))
# Extract ids and logos from meta.json
IDS_AND_LOGOS=$(jq -c '.[] | {id, logo}' meta.json)
# Validate each id in meta.json exists as a folder
for item in $IDS_AND_LOGOS; do
ID=$(echo "$item" | jq -r '.id')
LOGO=$(echo "$item" | jq -r '.logo')
# Check if folder exists
if [ ! -d "blueprints/$ID" ]; then
echo "❌ meta.json id \"$ID\" does not have a matching folder in blueprints/"
ERROR=1
continue
fi
# Check if logo file exists inside its folder
if [ ! -f "blueprints/$ID/$LOGO" ]; then
echo "❌ Logo \"$LOGO\" defined for \"$ID\" does not exist in blueprints/$ID/"
ERROR=1
fi
done
# Validate each folder has a matching id in meta.json
META_IDS=$(jq -r '.[].id' meta.json)
for FOLDER in "${FOLDERS[@]}"; do
FOUND=0
for ID in $META_IDS; do
if [ "$FOLDER" == "$ID" ]; then
FOUND=1
break
fi
done
if [ "$FOUND" -eq 0 ]; then
echo "❌ Folder \"$FOLDER\" has no matching id in meta.json"
ERROR=1
fi
done
if [ $ERROR -eq 1 ]; then
echo "❌ meta.json validation failed."
exit 1
else
echo "✅ meta.json validated successfully."
fi
- name: Validate per-template metadata (blueprints/<id>/meta.json)
run: node build-scripts/generate-meta.js --check

View File

@@ -29,9 +29,9 @@ This document provides essential context for AI models interacting with this pro
- `/src/hooks`: Custom React hooks (e.g., `useFuseSearch.ts` for fuzzy search).
- `/src/store`: Zustand state management store.
- `/src/lib`: Utility functions and helpers.
- `/build-scripts`: Advanced meta.json processing tools with CLI options and JSON schema validation.
- `/build-scripts`: Metadata tooling — `generate-meta.js` (aggregates and validates every `blueprints/<id>/meta.json` into the served `meta.json` artifact) and `explode-meta.js` (one-shot migration reference).
- `/.github/workflows`: CI/CD workflows for validation, preview builds, and deployments.
- Root level: Core processing scripts (`dedupe-and-sort-meta.js`), metadata index (`meta.json`), build configuration (`Makefile`, `package.json`).
- Root level: There is NO root `meta.json` in the repo — each template's metadata lives in `blueprints/<id>/meta.json` and the global registry is generated at build time.
- **Module Organization:** Node.js scripts for metadata processing, React components for frontend UI, Docker Compose files for service definitions, TOML files for Dokploy configuration. Frontend uses component-based architecture with hooks for business logic and Zustand for global state.
## 4. Coding Conventions & Style Guide
@@ -42,7 +42,7 @@ This document provides essential context for AI models interacting with this pro
- React components: PascalCase (`TemplateGrid`, `SearchBar`)
- Constants: SCREAMING_SNAKE_CASE (`MAX_BUFFER_SIZE`)
- Template IDs: lowercase, kebab-case (`activepieces`, `ghost`) - **MUST** be unique across repository
- Files: snake_case for scripts (`dedupe-and-sort-meta.js`), PascalCase for React components (`TemplateGrid.tsx`), kebab-case for directories (`build-scripts`)
- Files: kebab-case for scripts (`generate-meta.js`), PascalCase for React components (`TemplateGrid.tsx`), kebab-case for directories (`build-scripts`)
- Docker services: **MUST** match blueprint folder name exactly (e.g., `ghost` service in `blueprints/ghost/`)
- **API Design:**
- **Backend:** Procedural scripting approach with CLI interfaces. Template system uses declarative configuration over imperative code.
@@ -65,17 +65,15 @@ This document provides essential context for AI models interacting with this pro
## 5. Key Files & Entrypoints
- **Main Entrypoints:**
- **Backend:** `dedupe-and-sort-meta.js` - Primary script for processing meta.json file.
- **Backend:** `build-scripts/generate-meta.js` - Aggregates and validates all `blueprints/<id>/meta.json` files into the served `meta.json` artifact (`app/public/meta.json`, gitignored).
- **Frontend:** `app/src/main.tsx` - React application entry point.
- **Configuration:**
- `package.json` - Root Node.js project configuration and npm scripts.
- `app/package.json` - Frontend dependencies and pnpm scripts.
- `meta.json` - Centralized template registry (200+ entries).
- `Makefile` - Build automation with targets for processing, validation, and cleanup.
- `app/package.json` - Frontend dependencies and pnpm scripts (`dev` and `build` run `generate-meta.js` first).
- `blueprints/<id>/meta.json` - Per-template metadata (one object per template; 400+ templates).
- `app/vite.config.ts` - Vite build configuration with static copy plugin.
- `app/tsconfig.json` - TypeScript compiler configuration.
- **CI/CD Pipeline:**
- `.github/workflows/validate-meta.yml` - Validates meta.json structure, duplicates, and sort order.
- `.github/workflows/validate-meta.yml` - Validates every `blueprints/<id>/meta.json` (via `generate-meta.js --check`) and rejects a committed root `meta.json`.
- `.github/workflows/build-preview.yml` - Builds preview deployments for PRs.
- `.github/workflows/deploy-preview.yml` - Deploys previews to Cloudflare Pages.
@@ -92,47 +90,26 @@ This document provides essential context for AI models interacting with this pro
cd app && pnpm install
```
- **Process meta.json** (CRITICAL: Run after ANY meta.json edits)
- **Validate template metadata** (CRITICAL: run after adding/editing any `blueprints/<id>/meta.json`)
```bash
npm run process-meta
# or
make process-meta
# or
node dedupe-and-sort-meta.js
node build-scripts/generate-meta.js --check
```
- **Validate without modifying**
- **Generate the served meta.json artifact** (done automatically by `pnpm dev` / `pnpm build` in `app/`)
```bash
npm run validate-meta
# or
make validate
```
- **Quick check for duplicates/sort status**
```bash
make check
```
- **Clean backup files**
```bash
make clean
node build-scripts/generate-meta.js # writes app/public/meta.json
```
- **Task Configuration:**
- **NPM Scripts:** Run `npm run` to list available scripts. Key scripts:
- `process-meta`: Remove duplicates and sort meta.json
- `process-meta-verbose`: Process with detailed output
- `validate-meta`: Validate structure without changes
- **Makefile Targets:** Run `make help` to list targets. Key targets:
- `process-meta`: Process meta.json
- `validate`: Validate without modifying
- `check`: Quick duplicate/sort check
- `build`: Full build process
- `clean`: Remove backup files
- **App scripts (`app/package.json`, pnpm):**
- `dev`: Generate meta artifact + start Vite dev server
- `build`: Generate meta artifact + typecheck + Vite build
- `generate-meta`: Generate the meta artifact only
- **Testing:** No formal unit testing framework. Validation occurs through:
- Script-based validation of meta.json structure and schema
- Script-based validation of every `blueprints/<id>/meta.json` (`build-scripts/generate-meta.js --check`)
- Manual testing via Dokploy preview deployments (import base64 from PR preview)
- JSON schema validation in `build-scripts/process-meta.js`
- TypeScript compilation errors caught during build
- ESLint for code quality in frontend
- **CI/CD Process:**
- **On meta.json changes:** Validates structure, checks for duplicates, verifies sort order, compares processed vs original.
- **On blueprint changes:** Validates each template's metadata (required fields, id/folder match, logo file exists) and rejects a committed root `meta.json`.
- **On PR creation:** Builds preview deployment, generates base64 import for testing in Dokploy.
- **Preview testing:** Use PR description link → Search template → Copy base64 → Import in Dokploy instance.
@@ -140,10 +117,10 @@ This document provides essential context for AI models interacting with this pro
- **Contribution Guidelines:**
- Follow existing Dokploy template structure strictly. Each blueprint must be independent with no shared state.
- **CRITICAL:** Always run `node dedupe-and-sort-meta.js` or `npm run process-meta` after ANY meta.json edits.
- **CRITICAL:** Template metadata lives in `blueprints/<id>/meta.json` (one object per template). Never create or edit a root-level `meta.json` — it is generated at build time. Run `node build-scripts/generate-meta.js --check` after any metadata edits.
- Test templates in Dokploy preview before submitting PRs (use base64 import from PR preview).
- Add logo file (SVG preferred, ~128x128px) to blueprint folder.
- Ensure template `id` in meta.json exactly matches blueprint folder name (lowercase kebab-case).
- Ensure the `id` in `blueprints/<id>/meta.json` exactly matches the blueprint folder name (lowercase kebab-case).
- **Docker Compose Conventions (CRITICAL):**
- **Version:** MUST be `3.8`

View File

@@ -73,16 +73,16 @@ To add a new template, follow these steps:
"""
```
4. **Update `meta.json`**: Add an entry for your template in the root `meta.json`. Include:
4. **Add `meta.json` in your template folder**: Create `blueprints/<id>/meta.json` with a single JSON object describing your template. Do NOT create or edit a root-level `meta.json` — the global registry is generated automatically at build time from every `blueprints/<id>/meta.json` (this is what makes template PRs conflict-free). Include:
- `id`: Folder name (e.g., "grafana").
- `id`: Folder name (e.g., "grafana") — must match the folder exactly.
- `name`: Display name.
- `version`: Image/tag version.
- `description`: Brief overview.
- `logo`: Filename of the logo (e.g., "grafana.svg").
- `links`: Object with `github`, `website`, `docs` (URLs).
- `links`: Object with `github`, `website`, `docs` (URLs; use `""` if not applicable).
- `tags`: Array of categories (e.g., ["monitoring"]).
- Example:
- Example (`blueprints/grafana/meta.json`):
```json
{
"id": "grafana",
@@ -101,7 +101,7 @@ To add a new template, follow these steps:
5. **Add a Logo**: Place an SVG or PNG logo (e.g., `grafana.svg`) in the template folder. Keep it simple and representative (ideally 512x512 or similar).
6. **Run Validation**: Before pushing, run `node dedupe-and-sort-meta.js` (if available) or manually check for syntax errors in YAML/TOML/JSON.
6. **Run Validation**: Before pushing, run `node build-scripts/generate-meta.js --check` to validate every template's metadata (same check CI runs), and manually check for syntax errors in YAML/TOML.
7. **Commit and PR**: Push your branch and open a PR. Include:
- A description of the template.
@@ -195,7 +195,7 @@ If issues arise, debug locally or in the preview. Fix and update your PR.
## Updating Existing Templates
- Follow the same structure as adding new ones.
- Bump `version` in `meta.json` and update `docker-compose.yml` image tags.
- Bump `version` in the template's `blueprints/<id>/meta.json` and update `docker-compose.yml` image tags.
- Test thoroughly, as changes may affect users.
## Reporting Bugs or Requesting Features

View File

@@ -225,4 +225,4 @@ services:
6. Now you can click on the Deploy Button and wait for the deployment to finish, and try to access to the service, if everything is correct you should access to the service and see the template working.
use the command `node dedupe-and-sort-meta.js` to deduplicate and sort the meta.json file.
Each template's metadata lives in `blueprints/<id>/meta.json`; the global `meta.json` is generated at build time. Use `node build-scripts/generate-meta.js --check` to validate all template metadata.

View File

@@ -4,10 +4,11 @@
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"dev": "node ../build-scripts/generate-meta.js && vite",
"build": "node ../build-scripts/generate-meta.js && tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview"
"preview": "vite preview",
"generate-meta": "node ../build-scripts/generate-meta.js"
},
"dependencies": {
"@codemirror/autocomplete": "^6.19.1",

1
app/public/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
meta.json

View File

@@ -11,11 +11,9 @@ export default defineConfig({
{
src: '../blueprints/*',
dest: 'blueprints' // raíz de dist (public root)
},
{
src: '../meta.json',
dest: '' // raíz de dist
}
// meta.json is no longer copied from the repo root: it is
// generated into app/public/meta.json by build-scripts/generate-meta.js
]
})

View File

@@ -0,0 +1,16 @@
{
"id": "ackee",
"name": "Ackee",
"version": "latest",
"description": "Ackee is a self-hosted analytics tool for your website.",
"logo": "logo.png",
"links": {
"github": "https://github.com/electerious/Ackee",
"website": "https://ackee.electerious.com/",
"docs": "https://docs.ackee.electerious.com/"
},
"tags": [
"analytics",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "activepieces",
"name": "Activepieces",
"version": "0.35.0",
"description": "Open-source no-code business automation tool. An alternative to Zapier, Make.com, and Tray.",
"logo": "activepieces.svg",
"links": {
"github": "https://github.com/activepieces/activepieces",
"website": "https://www.activepieces.com/",
"docs": "https://www.activepieces.com/docs"
},
"tags": [
"automation",
"workflow",
"no-code"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "actualbudget",
"name": "Actual Budget",
"version": "latest",
"description": "A super fast and privacy-focused app for managing your finances.",
"logo": "actualbudget.png",
"links": {
"github": "https://github.com/actualbudget/actual",
"website": "https://actualbudget.org",
"docs": "https://actualbudget.org/docs"
},
"tags": [
"budgeting",
"finance",
"money"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "adguardhome",
"name": "AdGuard Home",
"version": "latest",
"description": "AdGuard Home is a comprehensive solution designed to enhance your online browsing experience by eliminating all kinds of ads, from annoying banners and pop-ups to intrusive video ads. It provides privacy protection, browsing security, and parental control features while maintaining website functionality.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/AdguardTeam/AdGuardHome",
"website": "https://adguard.com",
"docs": "https://github.com/AdguardTeam/AdGuardHome/wiki"
},
"tags": [
"privacy",
"security",
"dns",
"ad-blocking"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "adminer",
"name": "Adminer",
"version": "4.8.1",
"description": "Adminer is a comprehensive database management tool that supports MySQL, MariaDB, PostgreSQL, SQLite, MS SQL, Oracle, Elasticsearch, MongoDB and others. It provides a clean interface for efficient database operations, with strong security features and extensive customization options.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/vrana/adminer",
"website": "https://www.adminer.org/",
"docs": "https://www.adminer.org/en/plugins/"
},
"tags": [
"databases",
"developer-tools",
"mysql",
"postgresql"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "adventurelog",
"name": "AdventureLog",
"version": "latest",
"description": "AdventureLog is an open-source activity tracker with maps, journaling, and Strava integration.",
"logo": "adventurelog.svg",
"links": {
"github": "https://github.com/seanmorley15/adventurelog",
"website": "https://adventurelog.app/",
"docs": "https://adventurelog.app/docs/"
},
"tags": [
"activity",
"maps",
"django",
"react",
"postgres"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "affinepro",
"name": "Affine Pro",
"version": "stable-780dd83",
"description": "Affine Pro is a modern, self-hosted platform designed for collaborative content creation and project management. It offers an intuitive interface, seamless real-time collaboration, and powerful tools for organizing tasks, notes, and ideas.",
"logo": "logo.png",
"links": {
"github": "https://github.com/toeverything/Affine",
"website": "https://affine.pro/",
"docs": "https://affine.pro/docs"
},
"tags": [
"collaboration",
"self-hosted",
"productivity",
"project-management"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "agent-zero",
"name": "Agent Zero",
"version": "v1.9",
"description": "Agent Zero is an open-source autonomous AI agent framework with memory and tool use capabilities.",
"logo": "agent-zero.svg",
"links": {
"github": "https://github.com/agent0ai/agent-zero",
"website": "https://www.agent-zero.ai",
"docs": "https://www.agent-zero.ai/p/docs/"
},
"tags": [
"ai",
"agent",
"automation"
]
}

View File

@@ -0,0 +1,20 @@
{
"id": "agentdvr",
"name": "Agent DVR",
"version": "latest",
"description": "Agent DVR is a comprehensive video surveillance software with motion detection, alerts, and remote access capabilities.",
"logo": "agentdvr.png",
"links": {
"github": "https://github.com/ispysoftware/AgentDVR",
"website": "https://www.ispyconnect.com/",
"docs": "https://www.ispyconnect.com/userguide-agent-dvr.aspx"
},
"tags": [
"surveillance",
"security",
"video",
"monitoring",
"dvr",
"camera"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "akaunting",
"name": "Akaunting",
"version": "latest",
"description": "Akaunting is a self-hosted, open-source accounting app for small businesses.",
"logo": "image.png",
"links": {
"github": "https://github.com/akaunting/akaunting",
"website": "https://akaunting.com",
"docs": "https://akaunting.com/docs"
},
"tags": [
"finance",
"accounting",
"php",
"mariadb",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "alarik",
"name": "Alarik",
"description": "Alarik is a high-performance, S3-compatible object storage.",
"logo": "alarik.png",
"version": "latest",
"links": {
"github": "https://github.com/achtungsoftware/alarik",
"website": "https://alarik.io/",
"docs": "https://alarik.io/docs"
},
"tags": [
"storage",
"s3",
"object-storage"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "alist",
"name": "AList",
"version": "v3.55.0",
"description": "ðŸ—️A file list/WebDAV program that supports multiple storages, powered by Gin and Solidjs.",
"logo": "alist.svg",
"links": {
"github": "https://github.com/AlistGo/alist",
"website": "https://alistgo.com/",
"docs": "https://alistgo.com/guide/install/docker.html"
},
"tags": [
"file",
"webdav",
"storage"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "alltube",
"name": "AllTube",
"version": "latest",
"description": "AllTube Download is an application designed to facilitate the downloading of videos from YouTube and other video sites. It provides an HTML GUI for youtube-dl with video conversion capabilities and JSON API support.",
"logo": "logo.png",
"links": {
"github": "https://github.com/Rudloff/alltube",
"website": "https://github.com/Rudloff/alltube",
"docs": "https://github.com/Rudloff/alltube/wiki"
},
"tags": [
"media",
"video",
"downloader"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "ampache",
"name": "Ampache",
"version": "latest",
"description": "Ampache is a web-based audio/video streaming application and file manager allowing you to access your music & videos from anywhere, using almost any internet enabled device.",
"logo": "logo.png",
"links": {
"github": "https://github.com/ampache/ampache",
"website": "http://ampache.org/",
"docs": "https://github.com/ampache/ampache/wiki"
},
"tags": [
"media",
"music",
"streaming"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "anonupload",
"name": "AnonUpload",
"version": "1",
"description": "AnonUpload is a secure, anonymous file sharing application that does not require a database. It is built with privacy as a priority, ensuring that the direct filename used is not displayed.",
"logo": "logo.png",
"links": {
"github": "https://github.com/supernova3339/anonupload",
"docs": "https://github.com/Supernova3339/anonupload/blob/main/env.md",
"website": "https://anonupload.com/"
},
"tags": [
"file-sharing",
"privacy"
]
}

18
blueprints/anse/meta.json Normal file
View File

@@ -0,0 +1,18 @@
{
"id": "anse",
"name": "Anse",
"version": "latest",
"description": "Anse is an open-source alternative to ChatGPT web UI, supporting OpenAI-compatible APIs.",
"logo": "image.png",
"links": {
"github": "https://github.com/ddiu8081/anse",
"website": "https://anse.app/",
"docs": "https://github.com/ddiu8081/anse#readme"
},
"tags": [
"ai",
"chatbot",
"openai",
"ui"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "answer",
"name": "Answer",
"version": "v1.4.1",
"description": "Answer is an open-source Q&A platform for building a self-hosted question-and-answer service.",
"logo": "answer.png",
"links": {
"github": "https://github.com/apache/answer",
"website": "https://answer.apache.org/",
"docs": "https://answer.apache.org/docs"
},
"tags": [
"q&a",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "anubis",
"name": "Anubis",
"version": "latest",
"description": "Anubis is a bot protector, It will block bots from accessing your website.",
"logo": "anubis.webp",
"links": {
"github": "https://github.com/TecharoHQ/anubis",
"website": "https://anubis.techaro.lol",
"docs": "https://anubis.techaro.lol/docs/"
},
"tags": [
"self-hosted",
"bot-protection"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "anythingllm",
"name": "AnythingLLM",
"version": "latest",
"description": "AnythingLLM is a private, self-hosted, and local document chatbot platform that allows you to chat with your documents using various LLM providers.",
"logo": "logo.png",
"links": {
"github": "https://github.com/Mintplex-Labs/anything-llm",
"website": "https://useanything.com",
"docs": "https://github.com/Mintplex-Labs/anything-llm/tree/master/docs"
},
"tags": [
"ai",
"llm",
"chatbot"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "anytype",
"name": "Anytype",
"version": "latest",
"description": "Anytype is a personal knowledge base—your digital brain—that lets you gather, connect and remix all kinds of information. Create pages, tasks, wikis, journals—even entire apps—and define your own data model while your data stays offline-first, private and encrypted across devices.\n\nAfter installation, you can view the Anytype client configuration by running `cat /data/client-config.yml` inside the service container.",
"logo": "logo.png",
"links": {
"github": "https://github.com/grishy/any-sync-bundle",
"docs": "https://doc.anytype.io/anytype-docs",
"website": "https://anytype.io/"
},
"tags": [
"note-taking",
"local-first",
"peer-to-peer"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "appflowy",
"name": "App Flowy",
"version": "0.9.3",
"description": "AppFlowy is an open-source alternative to Notion. You are in charge of your data and customizations.",
"links": {
"github": "https://github.com/AppFlowy-IO/AppFlowy",
"website": "https://appflowy.io/",
"docs": "https://docs.appflowy.io/docs"
},
"logo": "appflowy.png",
"tags": [
"productivity",
"self-hosted",
"notes",
"knowledge-base",
"notion-alternative"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "apprise-api",
"name": "Apprise API",
"version": "latest",
"description": "Apprise API provides a simple interface for sending notifications to almost all of the most popular notification services available to us today.",
"logo": "logo.png",
"links": {
"github": "https://github.com/caronc/apprise-api",
"website": "https://github.com/caronc/apprise-api",
"docs": "https://github.com/caronc/apprise-api/wiki"
},
"tags": [
"notifications",
"api"
]
}

View File

@@ -0,0 +1,15 @@
{
"id": "appsmith",
"name": "Appsmith",
"version": "v1.94",
"description": "Appsmith is a free and open source platform for building internal tools and applications.",
"logo": "appsmith.png",
"links": {
"github": "https://github.com/appsmithorg/appsmith",
"website": "https://appsmith.com/",
"docs": "https://docs.appsmith.com/"
},
"tags": [
"cms"
]
}

View File

@@ -0,0 +1,20 @@
{
"id": "appwrite",
"name": "Appwrite",
"version": "1.9.5",
"description": "Appwrite is an end-to-end platform for building Web, Mobile, Native, or Backend apps, packaged as a set of Docker microservices. It includes both a backend server and a fully integrated hosting solution for deploying static and server-side rendered frontends. Appwrite abstracts the complexity and repetitiveness required to build modern apps from scratch and allows you to build secure, full-stack applications faster.\nUsing Appwrite, you can easily integrate your app with user authentication and multiple sign-in methods, a database for storing and querying users and team data, storage and file management, image manipulation, Cloud Functions, messaging, and more services.",
"links": {
"github": "https://github.com/appwrite/appwrite",
"website": "https://appwrite.io/",
"docs": "https://appwrite.io/docs"
},
"logo": "appwrite.svg",
"tags": [
"database",
"firebase",
"mariadb",
"mongodb",
"hosting",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "aptabase",
"name": "Aptabase",
"version": "v1.0.0",
"description": "Aptabase is a self-hosted web analytics platform that lets you track website traffic and user behavior.",
"logo": "aptabase.svg",
"links": {
"github": "https://github.com/aptabase/aptabase",
"website": "https://aptabase.com/",
"docs": "https://github.com/aptabase/aptabase/blob/main/README.md"
},
"tags": [
"analytics",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "arangodb",
"name": "ArangoDB",
"version": "latest",
"description": "ArangoDB is a native multi-model database with flexible data models for documents, graphs, and key-values. Build high performance applications using a convenient SQL-like query language or JavaScript extensions.",
"logo": "logo.png",
"links": {
"github": "https://github.com/arangodb/arangodb",
"website": "https://www.arangodb.com/",
"docs": "https://www.arangodb.com/docs/"
},
"tags": [
"database",
"graph-database",
"nosql"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "arche",
"name": "Arche",
"version": "latest",
"description": "Arche is a self-hosted AI workspace platform that spawns per-user OpenCode coding containers backed by a shared Knowledge Base. Requires the `arche-internal` external Docker network and `/opt/arche/{kb-content,kb-config,users}` directories on the host before deploy. Images are linux/amd64 by default; override `ARCHE_WEB_IMAGE` and `ARCHE_WORKSPACE_IMAGE` to the `-arm64` tag variants for ARM64 hosts.",
"logo": "arche.svg",
"links": {
"github": "https://github.com/peaberry-studio/arche",
"website": "https://github.com/peaberry-studio/arche",
"docs": "https://github.com/peaberry-studio/arche#readme"
},
"tags": [
"ai",
"coding",
"workspace",
"self-hosted",
"llm"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "archivebox",
"name": "ArchiveBox",
"version": "latest",
"description": "ArchiveBox is a self-hosted internet archiving solution for saving websites, media, and documents.",
"logo": "archivebox.svg",
"links": {
"github": "https://github.com/ArchiveBox/ArchiveBox",
"website": "https://archivebox.io/",
"docs": "https://docs.archivebox.io/"
},
"tags": [
"archive",
"bookmarks",
"web"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "argilla",
"name": "Argilla",
"version": "latest",
"description": "Argilla is a robust platform designed to help engineers and data scientists streamline the management of machine learning data workflows. It simplifies tasks like data labeling, annotation, and quality control.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/argilla-io/argilla",
"website": "https://www.argilla.io/",
"docs": "https://docs.argilla.io/"
},
"tags": [
"machine-learning",
"data-labeling",
"ai"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "audiobookshelf",
"name": "Audiobookshelf",
"version": "2.19.4",
"description": "Audiobookshelf is a self-hosted server designed to manage and play your audiobooks and podcasts. It works best when you have an organized directory structure.",
"logo": "logo.png",
"links": {
"github": "https://github.com/advplyr/audiobookshelf",
"website": "https://www.audiobookshelf.org",
"docs": "https://www.audiobookshelf.org/docs"
},
"tags": [
"media",
"audiobooks",
"podcasts"
]
}

View File

@@ -0,0 +1,21 @@
{
"id": "authelia",
"name": "Authelia",
"version": "latest",
"description": "The Single Sign-On Multi-Factor portal for web apps. An open-source authentication and authorization server providing 2FA and SSO via web portal.",
"logo": "authelia.png",
"links": {
"github": "https://github.com/authelia/authelia",
"website": "https://www.authelia.com/",
"docs": "https://www.authelia.com/overview/prologue/introduction/"
},
"tags": [
"authentication",
"authorization",
"2fa",
"sso",
"security",
"reverse-proxy",
"ldap"
]
}

View File

@@ -0,0 +1,21 @@
{
"id": "authentik",
"name": "Authentik",
"version": "2025.6.3",
"description": "Authentik is an open-source Identity Provider for authentication and authorization. It provides a comprehensive solution for managing user authentication, authorization, and identity federation with support for SAML, OAuth2, OIDC, and more.",
"links": {
"github": "https://github.com/goauthentik/authentik",
"website": "https://goauthentik.io/",
"docs": "https://goauthentik.io/docs/"
},
"logo": "authentik.svg",
"tags": [
"authentication",
"identity",
"sso",
"oidc",
"saml",
"oauth2",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "authorizer",
"name": "Authorizer",
"version": "1.4.4",
"description": "Authorizer is a powerful tool designed to simplify the process of user authentication and authorization in your applications. It allows you to build secure apps 10x faster with its low code tool and low-cost deployment.",
"logo": "logo.png",
"links": {
"github": "https://github.com/authorizerdev/authorizer",
"website": "https://authorizer.dev",
"docs": "https://docs.authorizer.dev/"
},
"tags": [
"authentication",
"authorization",
"security"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "autobase",
"name": "Autobase",
"version": "2.7.2",
"description": "Autobase for PostgreSQL® is an open-source alternative to cloud-managed databases (self-hosted DBaaS).",
"links": {
"github": "https://github.com/vitabaks/autobase",
"website": "https://autobase.tech/",
"docs": "https://autobase.tech/docs"
},
"logo": "autobase.svg",
"tags": [
"database",
"postgres",
"automation",
"self-hosted",
"dbaas"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "automatisch",
"name": "Automatisch",
"version": "2.0",
"description": "Automatisch is a powerful, self-hosted workflow automation tool designed for connecting your apps and automating repetitive tasks. With Automatisch, you can create workflows to sync data, send notifications, and perform various actions seamlessly across different services.",
"logo": "logo.png",
"links": {
"github": "https://github.com/automatisch/automatisch",
"website": "https://automatisch.io/docs",
"docs": "https://automatisch.io/docs"
},
"tags": [
"automation",
"workflow",
"integration"
]
}

View File

@@ -0,0 +1,20 @@
{
"id": "azuracast",
"name": "AzuraCast",
"version": "latest",
"description": "AzuraCast is a self-hosted, all-in-one web radio management suite. Easily manage your online radio stations with a powerful web interface.",
"logo": "azuracast.png",
"links": {
"github": "https://github.com/AzuraCast/AzuraCast",
"website": "https://www.azuracast.com/",
"docs": "https://docs.azuracast.com/"
},
"tags": [
"radio",
"streaming",
"media",
"broadcasting",
"music",
"entertainment"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "babybuddy",
"name": "BabyBuddy",
"version": "2.7.0",
"description": "BabyBuddy is a comprehensive, user-friendly platform designed to help parents and caregivers manage essential details about their child's growth and development. It provides tools for tracking feedings, sleep schedules, diaper changes, and milestones.",
"logo": "logo.png",
"links": {
"github": "https://github.com/babybuddy/babybuddy",
"website": "https://babybuddy.app",
"docs": "https://docs.babybuddy.app"
},
"tags": [
"parenting",
"tracking",
"family"
]
}

View File

@@ -0,0 +1,15 @@
{
"id": "backrest",
"name": "Backrest",
"version": "1.6.0",
"description": "Backrest is a web-based backup solution powered by restic, offering an intuitive WebUI for easy repository management, snapshot browsing, and file restoration. It runs in the background, automating snapshot scheduling and repository maintenance. Built with Go, Backrest is a lightweight standalone binary with restic as its only dependency. It provides a secure and user-friendly way to manage backups while still allowing direct access to the restic CLI for advanced operations.",
"links": {
"github": "https://github.com/garethgeorge/backrest",
"website": "https://garethgeorge.github.io/backrest",
"docs": "https://garethgeorge.github.io/backrest/introduction/getting-started"
},
"logo": "backrest.svg",
"tags": [
"backup"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "baikal",
"name": "Baikal",
"version": "nginx-php8.2",
"description": "Baikal is a lightweight, self-hosted CalDAV and CardDAV server that enables users to manage calendars and contacts efficiently. It provides a simple and effective solution for syncing and sharing events, tasks, and address books across multiple devices.",
"logo": "logo.png",
"links": {
"website": "https://sabre.io/baikal/",
"github": "https://sabre.io/baikal/",
"docs": "https://sabre.io/baikal/install/"
},
"tags": [
"calendar",
"contacts",
"caldav",
"carddav"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "barrage",
"name": "Barrage",
"version": "0.3.0",
"description": "Barrage is a minimalistic Deluge WebUI app with full mobile support. It features a responsive mobile-first design, allowing you to manage your torrents with ease from any device.",
"logo": "logo.png",
"links": {
"github": "https://github.com/maulik9898/barrage",
"website": "https://github.com/maulik9898/barrage",
"docs": "https://github.com/maulik9898/barrage/blob/main/README.md"
},
"tags": [
"torrents",
"deluge",
"mobile"
]
}

View File

@@ -0,0 +1,15 @@
{
"id": "baserow",
"name": "Baserow",
"version": "1.25.2",
"description": "Baserow is an open source database management tool that allows you to create and manage databases.",
"logo": "baserow.webp",
"links": {
"github": "https://github.com/Baserow/baserow",
"website": "https://baserow.io/",
"docs": "https://baserow.io/docs/index"
},
"tags": [
"database"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "bazarr",
"name": "Bazarr",
"version": "latest",
"description": "Bazarr is a companion application to Sonarr and Radarr that manages and downloads subtitles based on your requirements.",
"logo": "logo.png",
"links": {
"github": "https://github.com/morpheus65535/bazarr",
"website": "https://www.bazarr.media/",
"docs": "https://www.bazarr.media/docs"
},
"tags": [
"subtitles",
"sonarr",
"radarr"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "bentopdf",
"name": "BentoPDF",
"version": "latest",
"description": "BentoPDF is a lightweight PDF conversion microservice that exposes a simple HTTP API for generating PDFs.",
"logo": "image.png",
"links": {
"github": "https://github.com/bentopdf/bentopdf",
"website": "https://bentopdf.com/",
"docs": "https://github.com/bentopdf/bentopdf#readme"
},
"tags": [
"pdf",
"converter",
"api",
"utility"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "beszel",
"name": "Beszel",
"version": "0.10.2",
"description": "A lightweight server monitoring hub with historical data, docker stats, and alerts.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/henrygd/beszel",
"website": "https://beszel.dev",
"docs": "https://beszel.dev/guide/getting-started"
},
"tags": [
"monitoring",
"docker",
"alerts"
]
}

View File

@@ -0,0 +1,20 @@
{
"id": "bigcapital",
"name": "BigCapital",
"version": "latest",
"description": "BigCapital is a great open source alternative to QuickBooks. A comprehensive accounting and financial management system for businesses.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/bigcapitalhq/bigcapital",
"website": "https://bigcapital.app/",
"docs": "https://github.com/bigcapitalhq/bigcapital"
},
"tags": [
"accounting",
"finance",
"bookkeeping",
"quickbooks",
"erp",
"business"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "billmora",
"name": "Billmora",
"version": "latest",
"description": "Billmora (Billing Management, Operation, and Recurring Automation) is a free, open-source platform for hosting providers to manage clients, invoicing, and server provisioning.",
"logo": "billmora.svg",
"links": {
"website": "https://billmora.com",
"github": "https://github.com/Billmora/billmora",
"docs": "https://billmora.com/docs/introduction"
},
"tags": [
"laravel",
"billing",
"hosting",
"automation"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "blender",
"name": "Blender",
"version": "latest",
"description": "Blender is a free and open-source 3D creation suite. It supports the entire 3D pipeline—modeling, rigging, animation, simulation, rendering, compositing and motion tracking, video editing and 2D animation pipeline.",
"logo": "blender.svg",
"links": {
"github": "https://github.com/linuxserver/docker-blender",
"website": "https://www.blender.org/",
"docs": "https://docs.blender.org/"
},
"tags": [
"3d",
"rendering",
"animation"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "blinko",
"name": "Blinko",
"version": "latest",
"description": "Blinko is a modern web application for managing and organizing your digital content and workflows.",
"logo": "blinko.svg",
"links": {
"github": "https://github.com/blinkospace/blinko",
"website": "https://blinko.space/",
"docs": "https://docs.blinko.space/"
},
"tags": [
"productivity",
"organization",
"workflow",
"nextjs"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "bluesky-pds",
"name": "Bluesky PDS",
"version": "0.4.182",
"description": "Bluesky PDS is a personal data server for Bluesky.",
"logo": "bluesky-pds.svg",
"links": {
"github": "https://github.com/bluesky-social/pds",
"website": "https://bsky.social/about",
"docs": "https://github.com/bluesky-social/pds"
},
"tags": [
"bluesky",
"pds",
"data",
"server"
]
}

View File

@@ -0,0 +1,20 @@
{
"id": "bolt.diy",
"name": "bolt.diy",
"version": "latest",
"description": "Prompt, run, edit, and deploy full-stack web applications using any LLM you want!",
"logo": "logo.jpg",
"links": {
"github": "https://github.com/stackblitz-labs/bolt.diy",
"website": "https://stackblitz-labs.github.io/bolt.diy/",
"docs": "https://stackblitz-labs.github.io/bolt.diy/"
},
"tags": [
"ai",
"self-hosted",
"development",
"chatbot",
"ide",
"llm"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "booklore",
"name": "Booklore",
"version": "latest",
"description": "Booklore is an application for managing and serving book-related data, backed by a MariaDB database.",
"logo": "image.png",
"links": {
"github": "https://github.com/booklore-app/BookLore",
"website": "https://github.com/booklore-app/BookLore",
"docs": "https://github.com/booklore-app/BookLore/tree/develop/docs"
},
"tags": [
"books",
"library",
"database",
"mariadb"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "bookstack",
"name": "BookStack",
"version": "24.12.1",
"description": "BookStack is a self-hosted platform for creating beautiful, feature-rich documentation sites.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/BookStackApp/BookStack",
"website": "https://www.bookstackapp.com",
"docs": "https://www.bookstackapp.com/docs"
},
"tags": [
"documentation",
"self-hosted"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "borgitory",
"name": "Borgitory",
"version": "latest",
"description": "A web interface for managing BorgBackup archives. Allows browsing, mounting (via FUSE), and handling backup repositories.",
"logo": "image.png",
"links": {
"github": "https://github.com/mlapaglia/borgitory",
"website": "https://github.com/mlapaglia/borgitory",
"docs": "https://github.com/mlapaglia/borgitory"
},
"tags": [
"backup",
"borg",
"archive",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "botpress",
"name": "Botpress",
"version": "latest",
"description": "Botpress is a platform for building conversational AI agents. It provides a simple and effective solution for building conversational AI agents from anywhere.",
"logo": "logo.png",
"links": {
"github": "https://github.com/botpress/botpress",
"website": "https://botpress.com",
"docs": "https://botpress.com/docs"
},
"tags": [
"ai",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "browserless",
"name": "Browserless",
"version": "2.23.0",
"description": "Browserless allows remote clients to connect and execute headless work, all inside of docker. It supports the standard, unforked Puppeteer and Playwright libraries, as well offering REST-based APIs for common actions like data collection, PDF generation and more.",
"logo": "browserless.svg",
"links": {
"github": "https://github.com/browserless/browserless",
"website": "https://www.browserless.io/",
"docs": "https://docs.browserless.io/"
},
"tags": [
"browser",
"automation"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "budget-board",
"name": "Budget Board",
"version": "release",
"description": "Self-hosted budgeting app with a web UI and a server backed by PostgreSQL.",
"logo": "image.png",
"links": {
"github": "https://github.com/teelur/budget-board",
"website": "https://budgetboard.net/",
"docs": "https://budgetboard.net/"
},
"tags": [
"finance",
"postgres",
"self-hosted",
"docker",
"compose"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "budibase",
"name": "Budibase",
"version": "3.23.47",
"description": "Budibase is an open-source low-code platform that saves engineers 100s of hours building forms, portals, and approval apps, securely.",
"logo": "budibase.svg",
"links": {
"github": "https://github.com/Budibase/budibase",
"website": "https://budibase.com/",
"docs": "https://docs.budibase.com/docs/"
},
"tags": [
"database",
"low-code",
"nocode",
"applications"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "bugsink",
"name": "Bugsink",
"version": "latest",
"description": "Bugsink is a self-hosted Error Tracker. Built to self-host; Sentry-SDK compatible; Scalable and reliable",
"logo": "bugsink.png",
"links": {
"github": "https://github.com/bugsink/bugsink/",
"website": "https://www.bugsink.com/",
"docs": "https://www.bugsink.com/docs/"
},
"tags": [
"hosting",
"self-hosted",
"development"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "bytebase",
"name": "Bytebase",
"version": "latest",
"description": "Bytebase is a database management tool that allows you to manage your databases with ease. It provides a simple and effective solution for managing your databases from anywhere.",
"logo": "image.png",
"links": {
"github": "https://github.com/bytebase/bytebase",
"website": "https://www.bytebase.com",
"docs": "https://www.bytebase.com/docs"
},
"tags": [
"database",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "bytestash",
"name": "ByteStash",
"version": "latest",
"description": "ByteStash is a self-hosted web application designed to store, organise, and manage your code snippets efficiently. With support for creating, editing, and filtering snippets, ByteStash helps you keep track of your code in one secure place.",
"logo": "logo.png",
"links": {
"github": "https://github.com/jordan-dalby/ByteStash",
"website": "https://github.com/jordan-dalby/ByteStash",
"docs": "https://github.com/jordan-dalby/ByteStash"
},
"tags": [
"file-storage",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "calcom",
"name": "Calcom",
"version": "v2.7.6",
"description": "Calcom is a open source alternative to Calendly that allows to create scheduling and booking services.",
"links": {
"github": "https://github.com/calcom/cal.com",
"website": "https://cal.com/",
"docs": "https://cal.com/docs"
},
"logo": "calcom.jpg",
"tags": [
"scheduling",
"booking"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "calibre-web",
"name": "Calibre-Web",
"version": "latest",
"description": "Calibre-Web is a web app providing a clean interface for browsing, reading, and managing your eBooks library using an existing Calibre database.",
"logo": "image.png",
"links": {
"github": "https://github.com/janeczku/calibre-web",
"website": "https://github.com/janeczku/calibre-web",
"docs": "https://github.com/janeczku/calibre-web/wiki"
},
"tags": [
"ebooks",
"media",
"library",
"self-hosted"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "calibre",
"name": "Calibre",
"version": "7.26.0",
"description": "Calibre is a comprehensive e-book management tool designed to organize, convert, and read your e-book collection. It supports most of the major e-book formats and is compatible with various e-book reader devices.",
"logo": "logo.png",
"links": {
"github": "https://github.com/kovidgoyal/calibre",
"website": "https://calibre-ebook.com/",
"docs": "https://manual.calibre-ebook.com/"
},
"tags": [
"Documents",
"E-Commerce"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "capso",
"name": "Cap.so",
"version": "latest",
"description": "Cap.so is a platform for web and desktop applications with MySQL and S3 storage. It provides a complete development environment with database and file storage capabilities.",
"links": {
"github": "https://github.com/CapSoftware/Cap",
"website": "https://cap.so/",
"docs": "https://cap.so/docs/"
},
"logo": "capso.png",
"tags": [
"web",
"s3",
"mysql",
"development",
"self-hosted"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "carbone",
"name": "Carbone",
"version": "4.25.5",
"description": "Carbone is a high-performance, self-hosted document generation engine. It allows you to generate reports, invoices, and documents in various formats (e.g., PDF, DOCX, XLSX) using JSON data and template-based rendering.",
"logo": "logo.png",
"links": {
"github": "https://github.com/carboneio/carbone",
"website": "https://carbone.io/",
"docs": "https://carbone.io/documentation/design/overview/getting-started.html"
},
"tags": [
"Document Generation",
"Automation",
"Reporting",
"Productivity"
]
}

View File

@@ -0,0 +1,23 @@
{
"id": "casdoor",
"name": "Casdoor",
"version": "latest",
"description": "An open-source UI-first Identity and Access Management (IAM) / Single-Sign-On (SSO) platform with web UI supporting OAuth 2.0, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, and more.",
"logo": "casdoor.png",
"links": {
"github": "https://github.com/casdoor/casdoor",
"website": "https://casdoor.org/",
"docs": "https://casdoor.org/docs/overview"
},
"tags": [
"authentication",
"authorization",
"oauth2",
"oidc",
"sso",
"saml",
"identity-management",
"access-management",
"security"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "changedetection",
"name": "Change Detection",
"version": "0.49",
"description": "Changedetection.io is an intelligent tool designed to monitor changes on websites. Perfect for smart shoppers, data journalists, research engineers, data scientists, and security researchers.",
"logo": "logo.png",
"links": {
"github": "https://github.com/dgtlmoon/changedetection.io",
"website": "https://changedetection.io",
"docs": "https://github.com/dgtlmoon/changedetection.io/wiki"
},
"tags": [
"Monitoring",
"Data",
"Notifications"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "chatto",
"name": "Chatto (single binary)",
"version": "0.3.8",
"description": "A fully-featured real-time chat application for teams and communities. This template deploys the single Chatto binary with embedded NATS. Note: email/password registration requires SMTP to be configured after deployment; voice/video calls are not included in the single-binary setup.",
"logo": "logo.png",
"links": {
"github": "https://github.com/chattocorp/chatto",
"website": "https://chatto.run",
"docs": "https://docs.chatto.run"
},
"tags": [
"chat",
"communication",
"messaging",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "chatwoot",
"name": "Chatwoot",
"version": "v3.14.1",
"description": "Open-source customer engagement platform that provides a shared inbox for teams, live chat, and omnichannel support.",
"logo": "chatwoot.svg",
"links": {
"github": "https://github.com/chatwoot/chatwoot",
"website": "https://www.chatwoot.com",
"docs": "https://www.chatwoot.com/docs"
},
"tags": [
"support",
"chat",
"customer-service"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "checkcle",
"name": "Checkcle",
"version": "latest",
"description": "Checkcle is a security and compliance tool by Operacle, providing insights into system configuration and runtime checks.",
"logo": "image.png",
"links": {
"github": "https://github.com/Operacle/checkcle",
"website": "https://operacle.com/",
"docs": "https://github.com/Operacle/checkcle#readme"
},
"tags": [
"security",
"compliance",
"monitoring"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "checkmate",
"name": "Checkmate",
"version": "latest",
"description": "Checkmate is an open-source, self-hosted tool designed to track and monitor server hardware, uptime, response times, and incidents in real-time with beautiful visualizations.",
"logo": "checkmate.png",
"links": {
"github": "https://github.com/bluewave-labs/checkmate",
"website": "https://checkmate.so/",
"docs": "https://docs.checkmate.so"
},
"tags": [
"self-hosted",
"monitoring",
"uptime"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "chevereto",
"name": "Chevereto",
"version": "4",
"description": "Chevereto is a powerful, self-hosted image and video hosting platform designed for individuals, communities, and businesses. It allows users to upload, organize, and share media effortlessly.",
"logo": "logo.png",
"links": {
"github": "https://github.com/chevereto/chevereto",
"website": "https://chevereto.com/",
"docs": "https://v4-docs.chevereto.com/"
},
"tags": [
"Image Hosting",
"File Management",
"Open Source",
"Multi-User",
"Private Albums"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "chibisafe",
"name": "Chibisafe",
"version": "latest",
"description": "A beautiful and performant vault to save all your files in the cloud.",
"logo": "chibisafe.svg",
"links": {
"github": "https://github.com/chibisafe/chibisafe",
"website": "https://chibisafe.app",
"docs": "https://chibisafe.app/docs/intro"
},
"tags": [
"media system",
"storage",
"file-sharing"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "chiefonboarding",
"name": "Chief-Onboarding",
"version": "v2.2.5",
"description": "Chief-Onboarding is a comprehensive, self-hosted onboarding and employee management platform designed for businesses to streamline their onboarding processes.",
"logo": "logo.png",
"links": {
"github": "https://github.com/chiefonboarding/chiefonboarding",
"website": "https://demo.chiefonboarding.com/",
"docs": "https://docs.chiefonboarding.com/"
},
"tags": [
"Employee Onboarding",
"HR Management",
"Task Tracking",
"Role-Based Access",
"Document Management"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "chirpstack",
"name": "ChirpStack",
"version": "4",
"description": "Open-source LoRaWAN Network Server for IoT applications. Complete stack with gateway bridges, REST API, and web interface for managing LoRaWAN devices and gateways.",
"logo": "chirpstack.png",
"links": {
"github": "https://github.com/chirpstack/chirpstack",
"website": "https://www.chirpstack.io/",
"docs": "https://www.chirpstack.io/docs/"
},
"tags": [
"iot",
"lorawan",
"network-server",
"gateway",
"monitoring"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "chromium",
"name": "Chromium",
"version": "5f5dd27e-ls102",
"description": "Chromium is an open-source browser project that is designed to provide a safer, faster, and more stable way for all users to experience the web in a containerized environment.",
"logo": "logo.png",
"links": {
"github": "https://github.com/linuxserver/docker-chromium",
"docs": "https://docs.linuxserver.io/images/docker-chromium",
"website": "https://docs.linuxserver.io/images/docker-chromium"
},
"tags": [
"browser",
"development",
"web"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "classicpress",
"name": "ClassicPress",
"version": "php8.3-apache",
"description": "ClassicPress is a community-led open source content management system for creators. It is a fork of WordPress 6.2 that preserves the TinyMCE classic editor as the default option.",
"logo": "logo.png",
"links": {
"github": "https://github.com/ClassicPress/",
"website": "https://www.classicpress.net/",
"docs": "https://docs.classicpress.net/"
},
"tags": [
"cms",
"wordpress",
"content-management"
]
}

View File

@@ -0,0 +1,19 @@
{
"id": "clickhouse",
"name": "ClickHouse",
"version": "latest",
"description": "ClickHouse is an open-source column-oriented DBMS (columnar database management system) for online analytical processing (OLAP) that allows users to generate analytical reports using SQL queries in real-time. ClickHouse works 100-1000x faster than traditional database management systems, and processes hundreds of millions to over a billion rows and tens of gigabytes of data per server per second.",
"logo": "clickhouse_logo.png",
"links": {
"github": "https://github.com/ClickHouse/ClickHouse",
"website": "https://clickhouse.com/",
"docs": "https://clickhouse.com/docs"
},
"tags": [
"self-hosted",
"open-source",
"database",
"olap",
"analytics"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "cloud9",
"name": "Cloud9",
"version": "1.29.2",
"description": "Cloud9 is a cloud-based integrated development environment (IDE) designed for developers to code, build, and debug applications collaboratively in real time.",
"logo": "logo.png",
"links": {
"github": "https://github.com/c9",
"website": "https://aws.amazon.com/cloud9/",
"docs": "https://docs.aws.amazon.com/cloud9/"
},
"tags": [
"ide",
"development",
"cloud"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "cloudcommander",
"name": "Cloud Commander",
"version": "18.5.1",
"description": "Cloud Commander is a file manager for the web. It includes a command-line console and a text editor. Cloud Commander helps you manage your server and work with files, directories and programs in a web browser.",
"logo": "logo.png",
"links": {
"github": "https://github.com/coderaiser/cloudcmd",
"website": "https://cloudcmd.io",
"docs": "https://cloudcmd.io/#install"
},
"tags": [
"file-manager",
"web-based",
"console"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "cloudflare-ddns",
"name": "Cloudflare DDNS",
"version": "1.15.1",
"description": "A small, feature-rich, and robust Cloudflare DDNS updater.",
"logo": "cloudflare-ddns.svg",
"links": {
"github": "https://github.com/favonia/cloudflare-ddns",
"website": "https://github.com/favonia/cloudflare-ddns",
"docs": "https://github.com/favonia/cloudflare-ddns"
},
"tags": [
"cloud",
"networking",
"ddns"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "cloudflared",
"name": "Cloudflared",
"version": "latest",
"description": "A lightweight daemon that securely connects local services to the internet through Cloudflare Tunnel.",
"logo": "cloudflared.svg",
"links": {
"github": "https://github.com/cloudflare/cloudflared",
"website": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/",
"docs": "https://developers.cloudflare.com/cloudflare-one/networks/connectors/cloudflare-tunnel/get-started/"
},
"tags": [
"cloud",
"networking",
"security",
"tunnel"
]
}

View File

@@ -0,0 +1,18 @@
{
"id": "cloudreve",
"name": "Cloudreve",
"version": "4.10.1",
"description": "Self-hosted file management and sharing system with multi-cloud storage support. Compatible with local, OneDrive, S3, and various cloud providers.",
"logo": "cloudreve.png",
"links": {
"github": "https://github.com/cloudreve/Cloudreve",
"website": "https://cloudreve.org",
"docs": "https://docs.cloudreve.org"
},
"tags": [
"storage",
"file-sharing",
"cloud",
"self-hosted"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "cockpit",
"name": "Cockpit",
"version": "core-2.11.0",
"description": "Cockpit is a headless content platform designed to streamline the creation, connection, and delivery of content for creators, marketers, and developers. It is built with an API-first approach, enabling limitless digital solutions.",
"logo": "logo.png",
"links": {
"github": "https://github.com/Cockpit-HQ",
"website": "https://getcockpit.com",
"docs": "https://getcockpit.com/documentation"
},
"tags": [
"cms",
"content-management",
"api"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "coder",
"name": "Coder",
"version": "2.15.3",
"description": "Coder is an open-source cloud development environment (CDE) that you host in your cloud or on-premises.",
"logo": "coder.svg",
"links": {
"github": "https://github.com/coder/coder",
"website": "https://coder.com/",
"docs": "https://coder.com/docs"
},
"tags": [
"self-hosted",
"open-source",
"builder"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "codex-docs",
"name": "CodeX Docs",
"version": "v2.2",
"description": "CodeX is a comprehensive platform that brings together passionate engineers, designers, and specialists to create high-quality open-source projects. It includes Editor.js, Hawk.so, CodeX Notes, and more.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/codex-team/codex.docs",
"website": "https://codex.so",
"docs": "https://docs.codex.so"
},
"tags": [
"documentation",
"development",
"collaboration"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "colanode",
"name": "Colanode Server",
"version": "v0.1.6",
"description": "Open-source and local-first Slack and Notion alternative that puts you in control of your data",
"logo": "logo.svg",
"links": {
"github": "https://github.com/colanode/colanode",
"website": "https://colanode.com",
"docs": "https://colanode.com/docs/"
},
"tags": [
"documentation",
"knowledge-base",
"collaboration"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "collabora-office",
"name": "Collabora Office",
"version": "latest",
"description": "Collabora Online is a powerful, flexible, and secure online office suite designed to break free from vendor lock-in and put you in full control of your documents.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/CollaboraOnline",
"website": "https://collaboraonline.com",
"docs": "https://sdk.collaboraonline.com/docs"
},
"tags": [
"office",
"documents",
"collaboration"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "commafeed",
"name": "CommaFeed",
"version": "latest",
"description": "CommaFeed is an open-source feed reader and news aggregator, designed to be lightweight and extensible, with PostgreSQL as its database.",
"logo": "logo.svg",
"links": {
"github": "https://github.com/Athou/commafeed",
"website": "https://www.commafeed.com/",
"docs": "https://github.com/Athou/commafeed/wiki"
},
"tags": [
"feed-reader",
"news-aggregator",
"rss"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "commento",
"name": "Commento",
"version": "v1.8.0",
"description": "Commento is a comments widget designed to enhance the interaction on your website. It allows your readers to contribute to the discussion by upvoting comments that add value and downvoting those that don't. The widget supports markdown formatting and provides moderation tools to manage conversations.",
"links": {
"website": "https://commento.io/",
"docs": "https://commento.io/",
"github": "https://github.com/souramoo/commentoplusplus"
},
"logo": "logo.png",
"tags": [
"comments",
"discussion",
"website"
]
}

View File

@@ -0,0 +1,17 @@
{
"id": "commentoplusplus",
"name": "Commento++",
"version": "v1.8.7",
"description": "Commento++ is a free, open-source application designed to provide a fast, lightweight comments box that you can embed in your static website. It offers features like Markdown support, Disqus import, voting, automated spam detection, moderation tools, sticky comments, thread locking, and OAuth login.",
"links": {
"website": "https://commento.io/",
"docs": "https://commento.io/",
"github": "https://github.com/souramoo/commentoplusplus"
},
"logo": "logo.png",
"tags": [
"comments",
"website",
"open-source"
]
}

View File

@@ -0,0 +1,16 @@
{
"id": "conduit",
"name": "Conduit",
"version": "v0.9.0",
"description": "Conduit is a simple, fast and reliable chat server powered by Matrix",
"logo": "conduit.svg",
"links": {
"github": "https://gitlab.com/famedly/conduit",
"website": "https://conduit.rs/",
"docs": "https://docs.conduit.rs/"
},
"tags": [
"matrix",
"communication"
]
}

Some files were not shown because too many files have changed in this diff Show More