Add create-docforge starter CLI

This commit is contained in:
thePR0M3TH3AN
2025-07-10 10:50:29 -04:00
parent 8b04671e4e
commit d7045ade89
8 changed files with 78 additions and 1 deletions

6
starter/config.yaml Normal file
View File

@@ -0,0 +1,6 @@
site:
title: "DocForge Docs"
description: "Simple static docs."
navigation:
search: true

View File

@@ -0,0 +1,3 @@
# API Endpoints
Document your API here.

View File

@@ -0,0 +1,3 @@
# Install
Run `npm install` then `npm run build` to generate your site.

View File

@@ -0,0 +1,3 @@
# Getting Started
This section helps you begin with DocForge.

3
starter/content/index.md Normal file
View File

@@ -0,0 +1,3 @@
# Welcome to DocForge
This is your new documentation site. Start editing files in the `content/` folder.

11
starter/package.json Normal file
View File

@@ -0,0 +1,11 @@
{
"name": "my-docforge-site",
"private": true,
"scripts": {
"dev": "eleventy --serve",
"build": "node node_modules/docforge/src/generator/index.js"
},
"dependencies": {
"docforge": "*"
}
}