H

Quickstart Guide

Get your HelpFiles knowledge base up and running in just a few minutes. This guide walks you through the essential steps from installation to publishing your first article.

Prerequisites

Before you begin, make sure you have the following installed:

  • Node.js version 18 or higher
  • npm or yarn package manager
  • A text editor (VS Code recommended)

Step 1: Install HelpFiles

Clone the repository and install dependencies:

git clone https://github.com/your-org/helpfiles.git
cd helpfiles
npm install

Step 2: Start the Development Server

Run the development server to see your knowledge base locally:

npm run dev

Open http://localhost:3000 in your browser. You should see the default knowledge base with sample content.

Step 3: Create Your First Category

Categories help organize your articles into logical groups. Open the editor at /editor/categories and create your first category:

  1. Click "New Category"
  2. Enter a name like "Getting Started"
  3. Add a brief description
  4. Choose an icon
  5. Click Save

Step 4: Write Your First Article

Navigate to /editor/articles/new to create your first article:

  1. Enter a title for your article
  2. Select the category you just created
  3. Write your content using Markdown in the editor
  4. Click Publish when you're ready

Note: You can save articles as drafts and publish them later. Unpublished articles won't appear on the public site.

Step 5: Deploy

When you're ready to go live, build and deploy:

npm run build
npm start

HelpFiles works great with Vercel for zero-configuration deployments, or any other Node.js hosting platform.

What's Next?

Now that you have the basics down, explore these guides:

Last updated: February 11, 2026

Was this article helpful?