chore(global): update configs as usual

also update contents of the humans.txt file btw

Signed-off-by: Andrei Jiroh Halili <ajhalili2006@andreijiroh.dev>
This commit is contained in:
Andrei Jiroh Halili 2025-06-13 20:09:33 +08:00
parent bef9262872
commit e5048e6f0f
No known key found for this signature in database
GPG key ID: 67BFC91B3DA12BE8
6 changed files with 46 additions and 6 deletions

17
.envrc
View file

@ -1,8 +1,17 @@
#!/usr/bin/env bash #!/usr/bin/env bash
if [[ $DEBUG != "" ]]; then
set -x
fi
if command -v devenv >> /dev/null; then if command -v devenv >> /dev/null; then
eval "$(devenv direnvrc)" eval "$(devenv direnvrc)"
use devenv use devenv
else else
echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'" echo "error: Install devenv first (https://devenv.sh) and then run 'direnv reload'"
fi return 1
fi
if [[ $DEBUG != "" ]]; then
set +x
fi

3
.gitignore vendored
View file

@ -21,3 +21,6 @@ devenv.local.nix
# pre-commit # pre-commit
.pre-commit-config.yaml .pre-commit-config.yaml
# Cloudflare Wrangler
.wrangler/

3
.mailmap Normal file
View file

@ -0,0 +1,3 @@
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>

View file

@ -9,7 +9,6 @@
# user manual # user manual
/manual /user-manual /manual /user-manual
/manual/* /user-manual/:path
# legal # legal
/privacy /legal/privacy /privacy /legal/privacy
@ -25,3 +24,6 @@
/security.txt /.well-known/security.txt /security.txt /.well-known/security.txt
/ads.txt /.well-known/ads.txt /ads.txt /.well-known/ads.txt
/keybase.txt /.well-known/keybase.txt /keybase.txt /.well-known/keybase.txt
# dynamic routing
/manual/* /user-manual/:path

View file

@ -12,7 +12,7 @@
From: Marilao, Bulacan, PH From: Marilao, Bulacan, PH
/* SITE */ /* SITE */
Last update: 2025-02-11 Last update: 2025-05-25 (might not be in sync with commit logs)
Timezone: PHT (GMT+8) Timezone: PHT (GMT+8)
Version: Currently unversioned Version: Currently unversioned
Language: English Language: English

23
wrangler.jsonc Normal file
View file

@ -0,0 +1,23 @@
{
"$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"
}
]
}