1
Fork 0
treehouse/treehouse.toml

123 lines
4.5 KiB
TOML
Raw Normal View History

2024-03-02 20:53:44 +01:00
# This string is prepended before each link address.
# Replace this with a different root path if you need to host the site in a subdirectory (eg. "/treehouse").
# Note this does not affect the behavior of `serve`, as the treehouse is always served under /.
# Therefore this is most useful for reverse proxies.
# This variable can also be set using the TREEHOUSE_SITE environment variable.
site = ""
2023-08-27 15:59:52 +02:00
# This is used to generate a link in the footer that links to the page's source commit.
# The final URL is `{commit_base_url}/{commit}/content/{tree_path}.tree`.
commit_base_url = "https://src.liquidev.net/liquidex/treehouse/src/commit"
2023-08-18 13:25:20 +02:00
[user]
title = "riki's house"
author = "riki"
description = "a fluffy ragdoll's fluffy house = —w— ="
canonical_url = "https://riki.house"
# URI prefix to use for entry IDs in feeds.
# This is kept at the old domain so as not to wreak havoc in people's feed readers.
# (changing this would mark all existing entries as unread, which would be really annoying.)
feed_id_prefix = "https://liquidex.house"
2023-08-27 15:59:52 +02:00
2023-08-27 16:04:07 +02:00
[defs]
2023-08-28 15:22:43 +02:00
2023-09-03 12:49:25 +02:00
# Social garbage
"social/github" = "https://github.com/liquidev"
"social/soundcloud" = "https://soundcloud.com/daknus"
"social/listenbrainz" = "https://listenbrainz.org/user/liquidev/"
2023-09-03 12:49:25 +02:00
# treehouse management facilities
2025-01-14 00:07:32 +01:00
"treehouse/issues" = "https://src.liquidev.net/riki/treehouse/issues"
2023-08-28 15:22:43 +02:00
# My own repositories
2023-08-30 18:10:28 +02:00
"stitchkit/repo" = "https://github.com/abyteintime/stitchkit"
2023-08-27 15:59:52 +02:00
"dawd3/repo" = "https://github.com/liquidev/dawd3"
2025-01-14 00:07:32 +01:00
"treehouse/repo" = "https://src.liquidev.net/riki/treehouse"
2023-08-28 15:22:43 +02:00
"dispatchers/repo" = "https://github.com/liquidev/dispatchers"
2023-09-12 14:31:53 +02:00
"abit/repo" = "https://github.com/abyteintime/abit"
"rokugo/repo" = "https://github.com/rokugo-lang/rokugo"
2024-03-08 17:06:47 +01:00
"mica/repo" = "https://github.com/mica-lang/mica"
2024-03-08 23:41:39 +01:00
"planet_overgamma/repo" = "https://github.com/liquidev/planet-overgamma"
2025-01-14 00:07:32 +01:00
"rkgk/repo" = "https://src.liquidev.net/riki/rkgk"
2024-11-30 23:40:20 +01:00
"netcanv/repo" = "https://github.com/netcanv/netcanv"
2023-08-28 15:22:43 +02:00
# Blog posts I like to reference
"article/function_coloring" = "https://journal.stuffwithstuff.com/2015/02/01/what-color-is-your-function/"
2023-08-27 18:25:21 +02:00
2024-02-22 16:14:02 +01:00
"word/hyperlink" = "https://en.wiktionary.org/wiki/hyperlink"
"word/iff" = "https://en.wiktionary.org/wiki/iff"
2024-02-16 22:44:54 +01:00
# People
"person/ezioleq" = "https://ezioleq.com"
2024-02-17 18:08:51 +01:00
"person/firstbober" = "https://firstbober.com"
2024-11-30 20:07:50 +01:00
"person/olekolek1000" = "https://oo8.dev"
"person/vixenka" = "https://vixenka.com"
2024-02-16 22:44:54 +01:00
2024-11-27 19:02:30 +01:00
[feed]
tags = [
# Hobby corners
"meow",
"programming",
"design",
"music",
"games",
"philosophy",
# Programming fields
"graphics",
"plt",
# Programming languages
"c",
"cxx",
"lua",
"javascript",
# Projects
"treehouse",
"haku",
]
[redirects.path]
# 2025-01-14 flattening
"about-treehouse" = "programming/about-treehouse"
"about-treehouse/emoji" = "treehouse/emoji"
"about-treehouse/the-end-is-never" = "the-end-is-never"
"music/reviews/aphex-twin/blue-calx" = "music/blue-calx"
"music/reviews/aphex-twin/syro" = "music/syro"
"music/reviews/opn/i-dont-love-me-anymore" = "music/i-dont-love-me-anymore"
"music/reviews/radiohead/a-moon-shaped-pool" = "music/a-moon-shaped-pool"
"music/reviews/radiohead/ok-computer" = "music/ok-computer"
"music/reviews/telefon-tel-aviv/map-of-what-is-effortless" = "music/map-of-what-is-effortless"
"programming/blog/aoc" = "programming/aoc"
"programming/blog/buildsome" = "programming/buildsome"
"programming/blog/cstring-starts-with" = "programming/cstring-starts-with"
"programming/blog/haku" = "programming/haku"
"programming/blog/lvalues" = "programming/lvalues"
"programming/blog/nix" = "programming/nix"
"programming/blog/or-types" = "programming/or-types"
"programming/blog/systems" = "programming/systems"
"programming/blog/tairu" = "programming/tairu"
"programming/blog/try-is-not-the-only-option" = "programming/try-is-not-the-only-option"
"programming/blog/vfs" = "programming/vfs"
"programming/languages/cxx" = "programming/cxx"
"programming/languages/javascript" = "programming/javascript"
"programming/languages/lua" = "programming/lua"
"programming/technologies/unreal-engine" = "programming/unreal-engine"
"programming/technologies/unreal-engine/blueprint" = "programming/unreal-engine/blueprint"
"programming/technologies/unreal-engine/fixes" = "programming/unreal-engine/fixes"
"programming/technologies/unreal-engine/generated-body" = "programming/unreal-engine/generated-body"
2024-03-08 17:06:47 +01:00
2023-08-27 18:25:21 +02:00
[emoji]
2024-02-07 11:24:54 +01:00
[pics]
[build.javascript]
import_roots = [
{ name = "treehouse", path = "" },
{ name = "tairu", path = "components/tairu" },
{ name = "haku", path = "components/haku" },
]