-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_config.yml
More file actions
114 lines (102 loc) · 3.9 KB
/
_config.yml
File metadata and controls
114 lines (102 loc) · 3.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# GitHub Pages configuration for Memory Map
# ------------------------------------------
# GitHub Pages runs Jekyll on this repo and, because there is no index.md
# or index.html at the root, it uses README.md as the site homepage. The
# settings below control the theme, the site title/description, and which
# directories Jekyll should ignore (so it doesn't try to process .tsx, .ts,
# and other source files as site content).
#
# To turn the site on, after committing this file:
# 1. Push to main
# 2. Open https://github.com/michaelkeating/memory-map/settings/pages
# 3. Under "Build and deployment" → Source, select "Deploy from a branch"
# 4. Branch: main, folder: / (root)
# 5. Save. The first build takes a minute or two; the URL will be
# https://michaelkeating.github.io/memory-map/
title: Memory Map
description: A personal knowledge graph that organizes itself. Chat about your memories and ideas; an LLM turns them into linked pages and connections. Runs entirely on your own machine.
author: Michael Keating
# Social / preview image. Shows up in link unfurls on Twitter/X, LinkedIn,
# Facebook, iMessage, Slack, Discord, Mastodon, etc. Most platforms prefer
# 1200×630 (1.91:1). graph-overview.png is 1500×850 (~1.76:1) — close
# enough that it crops cleanly. Swap for a dedicated 1200×630 card later
# if you want pixel-perfect previews.
image: /docs/images/graph-overview.png
logo: /docs/images/graph-overview.png
# Twitter-specific. Uncomment and fill in if you have a handle to attribute.
# twitter:
# username: your_twitter_handle
# card: summary_large_image
# GitHub Pages-supported theme.
# Alternatives you can swap in:
# jekyll-theme-minimal — clean left sidebar, sparse (developer-flavored)
# jekyll-theme-architect — structured, no gradient header
# jekyll-theme-slate — blue/dark, more corporate
# jekyll-theme-midnight — dark theme
# jekyll-theme-modernist — clean sans-serif
# Full list: https://pages.github.com/themes/
theme: jekyll-theme-cayman
# Links that appear in the Cayman theme's header buttons (below the title).
# The theme reads these if present. Omit if you don't want header buttons.
show_downloads: false
# Social / metadata — used by some themes and by GitHub's OG-tag generation.
url: https://michaelkeating.github.io
baseurl: /memory-map
# Files and directories Jekyll should NOT process.
# Source code, lockfiles, and build output have no place on the public site.
exclude:
- node_modules
- packages
- screenpipe-pipes
- data
- data-archived-*
- .turbo
- dist
- .env
- .env.example
- pnpm-lock.yaml
- pnpm-workspace.yaml
- package.json
- turbo.json
- tsconfig.json
- tsconfig.base.json
- CLAUDE.md
- AGENTS.md
- vendor
- Gemfile
- Gemfile.lock
# Files Jekyll should always include even if they start with a dot or
# match something in the default excludes. Not needed right now, but handy
# later if you add e.g. a CNAME file.
# include:
# - .nojekyll
# - CNAME
# Markdown processing
markdown: kramdown
kramdown:
input: GFM
hard_wrap: false
syntax_highlighter: rouge
# Plugins that GitHub Pages enables by default. Listed here for clarity;
# you don't strictly need this block — GitHub Pages auto-enables them.
plugins:
- jekyll-relative-links
- jekyll-optional-front-matter
- jekyll-readme-index
- jekyll-default-layout
- jekyll-titles-from-headings
- jekyll-seo-tag
# jekyll-relative-links turns relative links in your README like
# [SECURITY.md](./SECURITY.md) into proper site links so they work when
# served from /memory-map/. Without this plugin, clicking SECURITY.md on
# the rendered page would 404.
relative_links:
enabled: true
collections: true
# jekyll-readme-index makes README.md act as the directory index (i.e.
# the site homepage). Enabled by default on GitHub Pages; included here
# for clarity.
readme_index:
enabled: true
remove_originals: false
with_frontmatter: true