feat(template): added Actual Budget, a super fast and privacy-focused app for managing your finances (#1080)

Co-authored-by: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com>
This commit is contained in:
Khiet Tam Nguyen
2025-01-13 07:46:11 +11:00
committed by GitHub
parent 106a660a2b
commit ae97595610
4 changed files with 47 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

View File

@@ -0,0 +1,12 @@
services:
actualbudget:
image: docker.io/actualbudget/actual-server:latest
environment:
# See all options at https://actualbudget.org/docs/config
- ACTUAL_PORT=5006
volumes:
- actual-data:/data
restart: unless-stopped
volumes:
actual-data:

View File

@@ -0,0 +1,20 @@
import {
type DomainSchema,
type Schema,
type Template,
generateRandomDomain,
} from "../utils";
export function generate(schema: Schema): Template {
const domains: DomainSchema[] = [
{
host: generateRandomDomain(schema),
port: 5006,
serviceName: "actualbudget",
},
];
return {
domains,
};
}

View File

@@ -1209,6 +1209,21 @@ export const templates: TemplateData[] = [
tags: ["api", "backend", "pdf", "tools"],
load: () => import("./gotenberg/index").then((m) => m.generate),
},
{
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"],
load: () => import("./actualbudget/index").then((m) => m.generate),
},
{
id: "conduit",
name: "Conduit",