A curated directory of free, self-hosted tools by All Things Linux. Browse, search, and filter services at atl.tools.
All services are accessible to members of the All Things Linux community. Each one runs self-hosted on our infrastructure — no third-party data sharing.
- Framework — Next.js 16 (App Router)
- Styling — Tailwind CSS v4
- Deployment — Cloudflare Workers via Alchemy + OpenNext
- Monorepo — pnpm workspaces + Turborepo
- Linting — Biome
atl.tools/
├── apps/
│ └── web/ # Next.js app
│ ├── src/
│ │ ├── app/ # App router pages + global CSS
│ │ └── components/ # AppShell, ServiceCard
│ └── alchemy.run.ts # Cloudflare deployment config
└── packages/
└── manifest/ # Service definitions (single source of truth)
└── src/index.ts
pnpm install
pnpm devThe app runs at http://localhost:3000.
All services are defined in packages/manifest/src/index.ts. Add an entry to the services array:
{
id: "my-service",
name: "My Service",
description: "One-line description of what it does.",
url: "https://myservice.atl.tools",
icon: "Terminal", // Lucide icon name (PascalCase)
color: "yellow", // see CatppuccinColor type
category: "utilities", // see ServiceCategory type
status: "active", // "active" | "planned" | "maintenance"
tags: ["tag1", "tag2"],
},Available categories: privacy, utilities, search, development, conversion, visualization, documents, frontends
Authentication (first time):
pnpm --filter @atl.tools/web exec alchemy loginDeploy to staging:
pnpm deployDeploy to production (atl.tools):
pnpm deploy:prodTear down:
pnpm destroy:prod