| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Official documentation site for Basic Memory - a local-first knowledge management system built on the Model Context Protocol (MCP).
Live Site: docs.basicmemory.com
This repository contains the complete documentation for Basic Memory, including:
# Install dependencies
npm install
# Start dev server
npm run devThe site will be available at http://localhost:3000
| Command | Action |
|---|---|
| npm install | Install dependencies |
| npm run dev | Start dev server at localhost:3000 |
| npm run build | Build production site |
| npm run preview | Preview production build locally |
| just deploy development | Deploy to development environment |
| just deploy production | Deploy to production environment |
docs.basicmemory.com/ ├── app/ │ ├── app.config.ts # Docus configuration │ └── components/ # Custom Vue components ├── content/ # Documentation pages (Markdown) │ ├── 1.start-here/ # Getting started guides │ ├── 2.whats-new/ # Release notes │ ├── 3.cloud/ # Cloud documentation │ ├── 4.local/ # Local installation │ ├── 5.concepts/ # Core concepts │ ├── 6.integrations/ # Integration guides │ ├── 7.how-to/ # How-to guides │ └── 8.reference/ # Technical reference ├── public/ # Static assets ├── server/ # Server routes (API) ├── nuxt.config.ts # Nuxt configuration ├── Dockerfile # Container build ├── fly.toml.template # Fly.io deployment template └── justfile # Development commands
Example:
---
title: Page Title
description: Brief description
---
# Page Title
Content here...
::note
Important information for readers
::
::warning
Warning message
::Docus provides MDC components:
# Create Fly.io apps (one-time)
just fly-init development
just fly-init production
# Deploy manually
just deploy development
just deploy productionRequires FLY_API_TOKEN secret configured in repository settings.
just docker-build
just docker-runSee the main Basic Memory repository for license information.
| Back | FazBrowse Home | New Git URL |