chore: rename Stirling-Image to ashim across entire codebase

Complete rebrand from Stirling-Image to ashim following the project
move to https://github.com/ashim-hq/ashim.

Changes across 117 files:
- Package scope: @stirling-image/* → @ashim/*
- GitHub URLs: stirling-image/stirling-image → ashim-hq/ashim
- Docker Hub: stirlingimage/stirling-image → ashimhq/ashim
- GitHub Pages: stirling-image.github.io → ashim-hq.github.io
- All branding text: "Stirling Image" → "ashim"
- Docker service/volumes/user: stirling → ashim
- Database: stirling.db → ashim.db
- localStorage keys: stirling-token → ashim-token
- Environment variables: STIRLING_GPU → ASHIM_GPU
- Python cache dirs: .cache/stirling-image → .cache/ashim
- SVG filter IDs, test prefixes, and all other references
This commit is contained in:
Siddharth Kumar Sah
2026-04-14 20:55:42 +08:00
parent da4411330f
commit 85b1cfc10a
117 changed files with 710 additions and 713 deletions
+10 -10
View File
@@ -2,23 +2,23 @@ import { defineConfig } from "vitepress";
import llmstxt from "vitepress-plugin-llms";
export default defineConfig({
title: "Stirling Image",
description: "Documentation for Stirling Image, a self-hosted image processing suite.",
base: "/stirling-image/",
title: "ashim",
description: "Documentation for ashim, a self-hosted image processing suite.",
base: "/ashim/",
srcDir: ".",
outDir: "./.vitepress/dist",
ignoreDeadLinks: [/localhost/],
head: [
["meta", { name: "theme-color", content: "#3b82f6" }],
["link", { rel: "icon", type: "image/svg+xml", href: "/stirling-image/favicon.svg" }],
["link", { rel: "llms-txt", href: "/stirling-image/llms.txt" }],
["link", { rel: "icon", type: "image/svg+xml", href: "/ashim/favicon.svg" }],
["link", { rel: "llms-txt", href: "/ashim/llms.txt" }],
],
vite: {
plugins: [
llmstxt({
domain: "https://stirling-image.github.io",
domain: "https://ashim-hq.github.io",
customLLMsTxtTemplate: `# {title}
{description}
@@ -41,7 +41,7 @@ export default defineConfig({
## Source
- [GitHub](https://github.com/stirling-image/stirling-image)
- [GitHub](https://github.com/ashim-hq/ashim)
- License: AGPLv3 (commercial license also available)
`,
customTemplateVariables: {
@@ -93,13 +93,13 @@ export default defineConfig({
footer: {
message:
'Released under the <a href="https://github.com/stirling-image/stirling-image/blob/main/LICENSE">AGPLv3 License</a>.',
'Released under the <a href="https://github.com/ashim-hq/ashim/blob/main/LICENSE">AGPLv3 License</a>.',
copyright:
'AI-friendly docs available at <a href="/stirling-image/llms.txt">/llms.txt</a> · <a href="/stirling-image/llms-full.txt">/llms-full.txt</a>',
'AI-friendly docs available at <a href="/ashim/llms.txt">/llms.txt</a> · <a href="/ashim/llms-full.txt">/llms-full.txt</a>',
},
editLink: {
pattern: "https://github.com/stirling-image/stirling-image/edit/main/apps/docs/:path",
pattern: "https://github.com/ashim-hq/ashim/edit/main/apps/docs/:path",
text: "Edit this page on GitHub",
},
},
+2 -2
View File
@@ -2,11 +2,11 @@
import { onMounted, ref } from "vue";
const stars = ref<string | null>(null);
const repo = "https://github.com/stirling-image/stirling-image";
const repo = "https://github.com/ashim-hq/ashim";
onMounted(async () => {
try {
const res = await fetch("https://api.github.com/repos/stirling-image/stirling-image");
const res = await fetch("https://api.github.com/repos/ashim-hq/ashim");
if (!res.ok) return;
const data = await res.json();
const count = data.stargazers_count;