Skip to content

Commit 64986cf

Browse files
committed
Add blog post: Introducing the Torrust Tracker Deployer
- New blog post announcing the Torrust Tracker Deployer project - Covers project motivation, design philosophy, and current status - Details three-phase development journey (Bash, Perl, Rust PoCs) - Explains DDD architecture approach for infrastructure - Highlights AI-assisted development methodology - Includes comprehensive sections on: - Who should use the deployer - Deployment options (Hetzner, LXD, pre-provisioned VMs) - Current progress and roadmap - Documentation and error handling - Prerequisites and getting started - Emphasizes work-in-progress status (near completion, ~1 month to release)
1 parent d78a5ab commit 64986cf

File tree

5 files changed

+1147
-52
lines changed

5 files changed

+1147
-52
lines changed
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { metadata } from './metadata';
2+
import { getMetadata } from '$lib/data/metadata';
3+
import type { PageServerLoad } from './$types';
4+
5+
export const load: PageServerLoad = async ({ parent }) => {
6+
const parentData = await parent();
7+
const allPosts = await getMetadata();
8+
9+
return {
10+
...parentData,
11+
currentPost: metadata,
12+
allPosts
13+
};
14+
};

0 commit comments

Comments
 (0)