Skip to content

Commit

Permalink
feat(template): added Actual Budget, a super fast and privacy-focused…
Browse files Browse the repository at this point in the history
… app for managing your finances
  • Loading branch information
nktnet1 committed Jan 10, 2025
1 parent 123605d commit 2d50871
Show file tree
Hide file tree
Showing 4 changed files with 47 additions and 0 deletions.
Binary file added apps/dokploy/public/templates/actualbudget.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions apps/dokploy/templates/actualbudget/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -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:
20 changes: 20 additions & 0 deletions apps/dokploy/templates/actualbudget/index.ts
Original file line number Diff line number Diff line change
@@ -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,
};
}
15 changes: 15 additions & 0 deletions apps/dokploy/templates/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1210,5 +1210,20 @@ 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),
}
];

0 comments on commit 2d50871

Please sign in to comment.