Rename project to Archivox

This commit is contained in:
thePR0M3TH3AN
2025-07-10 14:53:51 -04:00
parent a606479726
commit 785eda8cae
18 changed files with 41 additions and 41 deletions

View File

@@ -30,7 +30,7 @@ function loadConfig(configPath = path.join(process.cwd(), 'config.yaml')) {
const defaults = {
site: {
title: 'DocForge',
title: 'Archivox',
description: '',
logo: '',
favicon: ''

View File

@@ -1,4 +1,4 @@
// Generator entry point for DocForge
// Generator entry point for Archivox
const fs = require('fs');
const path = require('path');
const matter = require('gray-matter');
@@ -210,7 +210,7 @@ async function generate({ contentDir = 'content', outputDir = '_site', configPat
}
// Copy the main assets directory (theme, js, etc.)
// Always resolve assets relative to the DocForge package so it works
// Always resolve assets relative to the Archivox package so it works
// regardless of the current working directory or config location.
const mainAssetsSrc = path.resolve(__dirname, '../../assets');
const mainAssetsDest = path.join(outputDir, 'assets');