~ajhalili2006's personal website, built with Zensical (successor of Material for Mkdocs) [old repo name got bugged while attempting to do manual knot migration via repo deletion] andreijiroh.dev
zensical mkdocs-material website

chore(global): update configs as usual

also update contents of the humans.txt file btw

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>

+13 -4
.envrc
···
#!/usr/bin/env bash
+
if [[ $DEBUG != "" ]]; then
+
set -x
+
fi
+
if command -v devenv >> /dev/null; then
-
eval "$(devenv direnvrc)"
-
use devenv
+
eval "$(devenv direnvrc)"
+
use devenv
else
-
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
-
fi
+
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
+
return 1
+
fi
+
+
if [[ $DEBUG != "" ]]; then
+
set +x
+
fi
+3
.gitignore
···
# pre-commit
.pre-commit-config.yaml
+
+
# Cloudflare Wrangler
+
.wrangler/
+3
.mailmap
···
+
Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev> <ajhalili2006@gmail.com>
+
Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev> <ajhalili2006@andreijiroh.eu.org>
+
Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev> <ajhalili2006@andreijiroh.xyz>
+3 -1
markdown/_redirects
···
# user manual
/manual /user-manual
-
/manual/* /user-manual/:path
# legal
/privacy /legal/privacy
···
/security.txt /.well-known/security.txt
/ads.txt /.well-known/ads.txt
/keybase.txt /.well-known/keybase.txt
+
+
# dynamic routing
+
/manual/* /user-manual/:path
+1 -1
markdown/humans.txt
···
From: Marilao, Bulacan, PH
/* SITE */
-
Last update: 2025-02-11
+
Last update: 2025-05-25 (might not be in sync with commit logs)
Timezone: PHT (GMT+8)
Version: Currently unversioned
Language: English
+23
wrangler.jsonc
···
+
{
+
"$schema": "https://raw.githubusercontent.com/recaptimedev-labs/workers-config-schema/refs/heads/main/config-schema.json",
+
"name": "website",
+
"account_id": "cf0bd808c6a294fd8c4d8f6d2cdeca05",
+
"compatibility_date": "2025-06-01",
+
"assets": {
+
"directory": "./public",
+
"html_handling": "auto-trailing-slash",
+
"not_found_handling": "404-page",
+
"run_worker_first": false
+
},
+
"build": {
+
"command": "pipenv run build"
+
},
+
"workers_dev": true,
+
"preview_urls": true,
+
"routes": [
+
{
+
"custom_domain": true,
+
"pattern": "andreijiroh.dev"
+
}
+
]
+
}