mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2024-11-10 03:39:38 +00:00
chore(global): usual commit-them-all to avoid data loss
Gonna start over on the workspace due to technical diffculties. Signed-off-by: Andrei Jiroh Halili <ajhalili2006@gmail.com>
This commit is contained in:
parent
81902a0b3c
commit
4df05ae9c4
18 changed files with 224 additions and 32 deletions
15
.env.example
Normal file
15
.env.example
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# wrangler specifics, DO NOT LEAK SHIT!
|
||||||
|
# see https://developers.cloudflare.com/workers/wrangler/system-environment-variables/ for details
|
||||||
|
# After selecting your CF account, copy the account ID after dash.cloudflare.com/ into the
|
||||||
|
# variable below.
|
||||||
|
CLOUDFLARE_ACCOUNT_ID=cf0bd808c6a294fd8c4d8f6d2cdeca05
|
||||||
|
# DO NOT PASTE IT IN .env.example file!
|
||||||
|
CLOUDFLARE_API_TOKEN=
|
||||||
|
# CLI options stuff
|
||||||
|
WRANGLER_SEND_METRICS=true
|
||||||
|
WRANGLER_LOG=log
|
||||||
|
|
||||||
|
# build configurations as feature flags
|
||||||
|
FF_ENABLE_COMMIT_DATA=true
|
||||||
|
# applies at build time, make sure required deps for
|
||||||
|
FF_GENERATE_SOCIAL_CARDS=false
|
65
.github/workflows/deploybot.yml
vendored
Normal file
65
.github/workflows/deploybot.yml
vendored
Normal file
|
@ -0,0 +1,65 @@
|
||||||
|
# Simple workflow for deploying static content to GitHub Pages
|
||||||
|
name: Deploy website CI
|
||||||
|
|
||||||
|
on:
|
||||||
|
# Runs on pushes targeting the default branch
|
||||||
|
push:
|
||||||
|
branches: ["main"]
|
||||||
|
|
||||||
|
# Allows you to run this workflow manually from the Actions tab
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||||
|
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||||
|
concurrency:
|
||||||
|
group: "pages"
|
||||||
|
cancel-in-progress: false
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
gh-pages:
|
||||||
|
environment:
|
||||||
|
name: github-pages
|
||||||
|
url: ${{ steps.deployment.outputs.page_url }}
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
- name: Setup Python
|
||||||
|
uses: actions/setup-python@v4.6.0
|
||||||
|
with:
|
||||||
|
python-version: 3.10
|
||||||
|
cache: pip
|
||||||
|
- name: Install dependencies
|
||||||
|
uses: brettcannon/pip-secure-install@v1.0.0
|
||||||
|
- name: Setup Pages
|
||||||
|
uses: actions/configure-pages@v3
|
||||||
|
- name: Build
|
||||||
|
run: |
|
||||||
|
sudo apt-get install \
|
||||||
|
libcairo2-dev libfreetype6-dev libffi-dev libjpeg-dev libpng-dev libz-dev \
|
||||||
|
--yes
|
||||||
|
FF_ENABLE_COMMIT_DATA=true FF_GENERATE_SOCIAL_CARDS=true mkdocs build --use-directory-urls
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-pages-artifact@v1
|
||||||
|
with:
|
||||||
|
path: './public'
|
||||||
|
- name: Deploy to GitHub Pages
|
||||||
|
id: deployment
|
||||||
|
uses: actions/deploy-pages@v2
|
||||||
|
repo-sync:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository with full history
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Setup Git user details
|
||||||
|
run: |
|
||||||
|
git config --global user.name "Recap Time Bot"
|
||||||
|
git config --global user.email "service-accounts+git@recaptime.eu.org"
|
|
@ -22,6 +22,33 @@ stages:
|
||||||
- lint
|
- lint
|
||||||
- deploy
|
- deploy
|
||||||
|
|
||||||
|
build:mr:
|
||||||
|
extends: [ .setupkit ]
|
||||||
|
stage: build
|
||||||
|
script:
|
||||||
|
- bash ./bin/build.sh
|
||||||
|
artifacts:
|
||||||
|
paths:
|
||||||
|
- public
|
||||||
|
untracked: false
|
||||||
|
when: on_success
|
||||||
|
expire_in: "21 days"
|
||||||
|
cache:
|
||||||
|
paths:
|
||||||
|
- .cache
|
||||||
|
- .venv
|
||||||
|
key: pages-build-main
|
||||||
|
rules:
|
||||||
|
- if: $CI_COMMIT_BRANCH != 'main' && $CI_PIPELINE_SOURCE == "merge_request"
|
||||||
|
changes:
|
||||||
|
- mkdocs.yml
|
||||||
|
- markdown/*
|
||||||
|
- markdown/**/*
|
||||||
|
- .gitlab-ci.yml
|
||||||
|
- docker/Dockerfile
|
||||||
|
- package*.json
|
||||||
|
- .trigger-deploy
|
||||||
|
|
||||||
build:main:
|
build:main:
|
||||||
extends: [ .setupkit ]
|
extends: [ .setupkit ]
|
||||||
stage: build
|
stage: build
|
||||||
|
|
4
.gitpod.Dockerfile
vendored
4
.gitpod.Dockerfile
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
# syntax=docker/dockerfile:1
|
||||||
FROM gitpod/workspace-full
|
FROM gitpod/workspace-full
|
||||||
|
|
||||||
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#linux
|
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#linux
|
||||||
|
@ -9,5 +10,8 @@ RUN sudo install-packages \
|
||||||
libpng-dev \
|
libpng-dev \
|
||||||
libz-dev
|
libz-dev
|
||||||
|
|
||||||
|
# https://docs.docker.com/build/install-buildx/
|
||||||
|
COPY --from=docker/buildx-bin:latest /buildx /usr/libexec/docker/cli-plugins/docker-buildx
|
||||||
|
|
||||||
# brew maintenance + install ShellCheck and Hadolint
|
# brew maintenance + install ShellCheck and Hadolint
|
||||||
RUN brew update && brew install hadolint shellcheck
|
RUN brew update && brew install hadolint shellcheck
|
|
@ -15,6 +15,8 @@ tasks:
|
||||||
source .venv/bin/activate
|
source .venv/bin/activate
|
||||||
pip3 install -r requirements.txt
|
pip3 install -r requirements.txt
|
||||||
command: |
|
command: |
|
||||||
|
source .venv/bin/activate
|
||||||
|
|
||||||
# since it might not be carried on venv shell, we did this instead
|
# since it might not be carried on venv shell, we did this instead
|
||||||
FF_ENABLE_COMMIT_DATA=true mkdocs serve
|
FF_ENABLE_COMMIT_DATA=true mkdocs serve
|
||||||
name: site-localdev
|
name: site-localdev
|
||||||
|
|
6
.vscode/settings.json
vendored
6
.vscode/settings.json
vendored
|
@ -15,9 +15,11 @@
|
||||||
"meta",
|
"meta",
|
||||||
"global",
|
"global",
|
||||||
"deps-dev",
|
"deps-dev",
|
||||||
"docker"
|
"docker",
|
||||||
|
"scripts"
|
||||||
],
|
],
|
||||||
"conventionalCommits.autoCommit": false,
|
"conventionalCommits.autoCommit": false,
|
||||||
"conventionalCommits.promptCI": true,
|
"conventionalCommits.promptCI": true,
|
||||||
"git.alwaysSignOff": true
|
"git.alwaysSignOff": true,
|
||||||
|
"gitlens.remotes": [{ "domain": "mau.dev", "type": "GitLab" }]
|
||||||
}
|
}
|
1
.wakatime-project
Normal file
1
.wakatime-project
Normal file
|
@ -0,0 +1 @@
|
||||||
|
tildeweb-ajhalili2006
|
28
README.md
28
README.md
|
@ -1,20 +1,23 @@
|
||||||
# ~ajhalili2006's website
|
# ~ajhalili2006's website
|
||||||
|
|
||||||
This is my sources for both [`andreijiroh.dev`](https://andreijiroh.eu.org) and tilde userpages in Ctrl-C Club and ~vern, built with Mkdocs + Material theme by ~squidfunk. (Sources for Gemini version of the website is available at `gmi` directory.)
|
[![Hosted on pages.dev](https://img.shields.io/badge/hosted%20on-pages.dev-orange?style=for-the-badge&logo=cloudflare)](https://pages.dev)
|
||||||
|
[![GitLab last commit](https://img.shields.io/gitlab/last-commit/ajhalili2006/tildeverse-web?gitlab_url=https%3A%2F%2Fmau.dev&style=for-the-badge)](https://mau.dev/ajhalili2006/tildeverse-web/commits)
|
||||||
|
|
||||||
Site content (exluding external content) is licensed
|
This is my sources for both [`andreijiroh.(eu.org|dev)`](https://andreijiroh.eu.org) and tilde userpages in Ctrl-C Club and ~vern,
|
||||||
under CC BY-SA 4.0.
|
built with Mkdocs + [Material theme](https://go.andreijiroh.eu.org/mkdocs-material) by [~squidfunk](https://go.andreijiroh.eu.org/squidfunk).
|
||||||
|
(Sources for Gemini version of the website is available at `gmi` directory.)
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# clone the repo
|
# clone the repo
|
||||||
# pick one on the clone URLs
|
# pick one on the clone URLs
|
||||||
git clone https://mau.dev/ajhalili2006/tildeverse-web
|
glab repo clone https://mau.dev/ajhalili2006/tildeverse-web
|
||||||
git clone git@git.sr.ht:~ajhalili2006/tildeverse-web
|
gh repo clone ajhalili2006/tildeverse-web
|
||||||
|
git clone git@git.sr.ht:~ajhalili2006/tildeweb
|
||||||
|
|
||||||
# maybe do this on a feature branch
|
# maybe do this on a feature branch
|
||||||
git switch -c username/my-suggestion-here
|
git switch -c your-git-username/your-suggestion-here
|
||||||
|
|
||||||
# install deps via venv
|
# install deps via venv
|
||||||
python3 -m venv venv
|
python3 -m venv venv
|
||||||
|
@ -28,15 +31,16 @@ nano markdown/path-to-file.md
|
||||||
# done?
|
# done?
|
||||||
git stage . && git commit --signoff
|
git stage . && git commit --signoff
|
||||||
|
|
||||||
# send patches via GitLab through the CLI
|
# send patches via GitLab or GitHub through the CLI
|
||||||
glab -R https://mau.dev/ajhalili2006/tildeverse-web mr create --allow-collaboration -b main
|
glab -R https://mau.dev/ajhalili2006/tildeverse-web mr create --allow-collaboration -b main
|
||||||
|
gh -R ajhalili2006/tildeverse-web pr create # might automatically closes PR due to mirror status
|
||||||
|
|
||||||
# or via my public inbox on sourcehut
|
# or via my public inbox on sourcehut
|
||||||
# see https://git-send-email.io for setup and guide
|
# see https://git-send-email.io for setup and guide
|
||||||
git config sendemail.to "~ajhalili2006/public-inbox@lists.sr.ht"
|
git config sendemail.to "~ajhalili2006/public-inbox@lists.sr.ht"
|
||||||
git config format.subjectPrefix "PATCH tildeweb"
|
git config format.subjectPrefix "PATCH tildeweb" # identification in archives + builds.sr.ht
|
||||||
git config --global sendemail.annotate yes
|
git config --global sendemail.annotate yes
|
||||||
git config --global format.signOff true
|
git config --global format.signOff true # needed for compliance with Linux DCO
|
||||||
git send-email HEAD^
|
git send-email HEAD^
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -46,3 +50,9 @@ Patches are always welcome, although you must sign-off your commits to comply wi
|
||||||
Please be reminded that while this is a personal open-source project, please expect long waiting
|
Please be reminded that while this is a personal open-source project, please expect long waiting
|
||||||
times during pathc reviews and don't be disappointed when I disagree on stuff and chose not to merge
|
times during pathc reviews and don't be disappointed when I disagree on stuff and chose not to merge
|
||||||
the patches for any reasons, including mental health breaks.
|
the patches for any reasons, including mental health breaks.
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
Unless otherwise noted,
|
||||||
|
|
||||||
|
The only thing that's not covered by this is [the favicon version](markdown/assets/images/favicon.png) of my profile picture.
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -e
|
set -ea
|
||||||
if [[ $DEBUG != "" ]]; then
|
if [[ $DEBUG != "" ]]; then
|
||||||
set -x
|
set -x
|
||||||
fi
|
fi
|
||||||
|
|
||||||
## source vars from .env first ##
|
## source vars from .env first ##
|
||||||
_root_directory_git=$(git rev-parse --show-toplevel)
|
_root_directory_git=$(git rev-parse --show-toplevel)
|
||||||
export "$(xargs < "$_root_directory_git/.env")"
|
# shellcheck file=/dev/null
|
||||||
|
source "$_root_directory_git/.env"
|
||||||
|
|
||||||
_branch_name_git=$(git rev-parse --abbrev-ref HEAD)
|
_branch_name_git=$(git rev-parse --abbrev-ref HEAD)
|
||||||
_commit_sha=$(git rev-parse HEAD)
|
_commit_sha=$(git rev-parse HEAD)
|
||||||
|
@ -50,3 +51,4 @@ fi
|
||||||
if [[ $DEBUG != "" ]]; then
|
if [[ $DEBUG != "" ]]; then
|
||||||
set +x
|
set +x
|
||||||
fi
|
fi
|
||||||
|
set +a
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
FROM python:alpine3.17
|
# Since hadolint isn't in the package repos for Alpineyet, we'll copying from the offical
|
||||||
|
# Docker image instead.
|
||||||
|
FROM ghcr.io/hadolint/hadolint:latest-alpine AS hadolint-binary
|
||||||
|
|
||||||
|
# Since we're building against edge at risk
|
||||||
|
FROM alpine:edge AS buildkit
|
||||||
|
|
||||||
|
COPY --stage=hadolint-binary /bin/hadolint /usr/bin/hadolint
|
||||||
|
|
||||||
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#linux but for Alpine
|
# https://squidfunk.github.io/mkdocs-material/setup/setting-up-social-cards/#linux but for Alpine
|
||||||
|
# hadolint ignore=DL3018,DL3013
|
||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
cairo-dev \
|
cairo-dev \
|
||||||
freetype-dev \
|
freetype-dev \
|
||||||
|
@ -9,13 +17,14 @@ RUN apk add --no-cache \
|
||||||
libpng-dev \
|
libpng-dev \
|
||||||
zlib-dev \
|
zlib-dev \
|
||||||
bash \
|
bash \
|
||||||
coreutils
|
coreutils \
|
||||||
RUN /usr/local/bin/pip3 install \
|
python3 \
|
||||||
|
py3-pip \
|
||||||
|
py3-wheel \
|
||||||
|
shellcheck \
|
||||||
|
&& pip3 install --no-cache \
|
||||||
mkdocs-material \
|
mkdocs-material \
|
||||||
mkdocs-redirects \
|
mkdocs-redirects \
|
||||||
mkdocs-git-revision-date-localized-plugin \
|
mkdocs-git-revision-date-localized-plugin \
|
||||||
pillow \
|
pillow \
|
||||||
cairosvg
|
cairosvg
|
||||||
|
|
||||||
ENTRYPOINT [ "mkdocs" ]
|
|
||||||
CMD [ "serve" ]
|
|
|
@ -1,11 +1,12 @@
|
||||||
# internal redirects
|
# internal redirects
|
||||||
/resume /user-manual/resume
|
/resume /user-manual/resume
|
||||||
/portfolio /user-manual/resume
|
#/portfolio /user-manual/resume
|
||||||
|
/dni /user-manual/dni
|
||||||
|
|
||||||
# external redirects
|
# external redirects
|
||||||
/blog https://ajhalili2006.substack.com
|
/blog https://ajhalili2006.substack.com
|
||||||
/pkgs https://gcdn.todo.com
|
/pkgs https://gcdn.todo.com
|
||||||
/socials https://ajhalili2006.bio.link
|
/socials https://ajhalili2006.start.page
|
||||||
|
|
||||||
# user manual
|
# user manual
|
||||||
/manual /user-manual
|
/manual /user-manual
|
||||||
|
@ -16,7 +17,7 @@
|
||||||
/privacy/coda /legal/privacy/coda
|
/privacy/coda /legal/privacy/coda
|
||||||
/legal/privacy/coda https://coda.io/@ajhalili2006/readme/privacy-policy-for-coda-hosted-pages-4
|
/legal/privacy/coda https://coda.io/@ajhalili2006/readme/privacy-policy-for-coda-hosted-pages-4
|
||||||
/coc https://coda.io/@ajhalili2006/readme/community-code-of-conduct-7
|
/coc https://coda.io/@ajhalili2006/readme/community-code-of-conduct-7
|
||||||
/code-of/conduct https://coda.io/@ajhalili2006/readme/community-code-of-conduct-7
|
/code-of-conduct https://coda.io/@ajhalili2006/readme/community-code-of-conduct-7
|
||||||
|
|
||||||
# this is obvious, right?
|
# this is obvious, right?
|
||||||
/favicon.ico /assets/images/favicon.png
|
/favicon.ico /assets/images/favicon.png
|
|
@ -6,3 +6,23 @@
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
## General
|
||||||
|
|
||||||
|
* Don’t leak nor spill beans on what shouldn’t be discussed, especially confidential and personal stuff.
|
||||||
|
* Read my personal user manual in full before you ask.
|
||||||
|
* For fandom-related stuff and other things, consider [reading my DNI](./dni.md)
|
||||||
|
|
||||||
|
## Personal
|
||||||
|
|
||||||
|
!!! note
|
||||||
|
Looking for mental health parts, especially on neurodivergence/disability? You might be looking at [:material-wheelchair-accessibility::fontawesome-solid-brain: Neurodivergence and Disability](./neurodivergence-and-disability.md).
|
||||||
|
|
||||||
|
## Professional
|
||||||
|
|
||||||
|
## What happened when boundaries are disrespected?
|
||||||
|
|
||||||
|
Hopefully tantrums, meltdowns and shutdowns don’t happen in front of your own eyes in levels I can’t handle, especially the silent ones.
|
||||||
|
|
||||||
|
In most cases, I might be frustated
|
||||||
|
|
||||||
|
## What about your DNI (Do Not Interact) list?
|
||||||
|
|
|
@ -40,18 +40,21 @@ Generally, I’m not a fan of sync meetings, especially if iot is scheduled outs
|
||||||
|
|
||||||
### Office Hours
|
### Office Hours
|
||||||
|
|
||||||
|
!!! warning "Currently left TBD due to school"
|
||||||
|
|
||||||
| Day | Regular Hours in PHT | Holidays / Rest Days [^1] |
|
| Day | Regular Hours in PHT | Holidays / Rest Days [^1] |
|
||||||
| --- | --- | --- |
|
| --- | --- | --- |
|
||||||
| Weekdays | | |
|
| Weekdays | TBD | TBD |
|
||||||
| Weekends | | |
|
| Weekends | TBD | TBD |
|
||||||
|
|
||||||
### Recap Time Squad specifics
|
### Recap Time Squad specifics
|
||||||
|
|
||||||
* Work-related stuff should be discussed in Recap Time Squad’s chatrooms (either public or staff-only, although anything confidential/internal should be stay in staff-only chat).
|
* Work-related stuff should be discussed in Recap Time Squad’s chatrooms (either public or staff-only, although anything confidential/internal should be stay in staff-only chat).
|
||||||
* Ping me when only needed. Also, DO NOT ping @everyone.
|
* Ping me when only needed. Also, DO NOT ping @everyone.
|
||||||
|
* I don't usually read email, but if you sent me some important emails (via my `@crew.recaptime.eu.org` )
|
||||||
|
|
||||||
## Additional resources
|
## Additional resources
|
||||||
|
|
||||||
TBD
|
TBD
|
||||||
|
|
||||||
[^1]: My regular rest days usually happen on Saturdays.
|
[^1]: My regular rest days usually happen on Saturdays, although they might be adjusted because of holidays and other reasons.
|
||||||
|
|
21
markdown/user-manual/dni.md
Normal file
21
markdown/user-manual/dni.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Do Not Interact List
|
||||||
|
|
||||||
|
!!! info "This content is also available on my multifandom Tumblr"
|
||||||
|
|
||||||
|
This page contains the list of people where ~ajhalili2006 specifically does not want to interact with them. It is expected for those who are affected by this DNI list to avoid following him, although blocking him is too much unless otherwise needed.
|
||||||
|
|
||||||
|
If spotted (even when following the Community Code of Conduct) in my his personal spaces (not in professional settings including Recap Time Squad, although his boundaries still apply), expect moderation actions up to and including wielding banhammers against your Tumblr blogs (plus other accounts across the internet).
|
||||||
|
|
||||||
|
## Table of contents
|
||||||
|
|
||||||
|
* General Shitfuckeries
|
||||||
|
* Shippers
|
||||||
|
* Dream Stans/Supporters
|
||||||
|
|
||||||
|
## Shippers
|
||||||
|
|
||||||
|
I’m not a pro-shipper, although sometimes things go horribly wrong when I ship people that shouldn’t be shipped. I’m more of a silent “ship responsibly” advocate like anyone else.
|
||||||
|
|
||||||
|
## (Toxic) Dream Stans/Supporters
|
||||||
|
|
||||||
|
I do not generally banhammer any people who support/stan Dream and the crew (aka Dream Team for the uninitiated), unless they do things toxic do fans in the interwebs.
|
|
@ -21,7 +21,7 @@ I'm Andrei Jiroh, a Filipino 16-year-old junior high school student at day and N
|
||||||
|
|
||||||
## Contents
|
## Contents
|
||||||
|
|
||||||
Most of the links below will redirect you to the Coda version of my personal README
|
Although they originally editied in Coda, I slowly moving some of them here.
|
||||||
|
|
||||||
* [:material-chat: Communications](./communications.md)
|
* [:material-chat: Communications](./communications.md)
|
||||||
* [:material-fence: Personal and professional boundaries](./boundaries.md)
|
* [:material-fence: Personal and professional boundaries](./boundaries.md)
|
||||||
|
|
|
@ -110,6 +110,10 @@ plugins:
|
||||||
- redirects:
|
- redirects:
|
||||||
redirect_maps:
|
redirect_maps:
|
||||||
"user-manual/portfolio.md": "portfolio.md"
|
"user-manual/portfolio.md": "portfolio.md"
|
||||||
|
"dni.md": "user-manual/dni.md"
|
||||||
|
"resume.md": "user-manual/resume.md"
|
||||||
|
"blog.md": "https://ajhalili2006.substack.com"
|
||||||
|
"socials.md": "https://ajhalili2006.start.page"
|
||||||
# debugging/bug reporting purposes only, proceed with caution
|
# debugging/bug reporting purposes only, proceed with caution
|
||||||
#- info
|
#- info
|
||||||
- git-revision-date-localized:
|
- git-revision-date-localized:
|
||||||
|
@ -137,6 +141,10 @@ markdown_extensions:
|
||||||
- md_in_html
|
- md_in_html
|
||||||
- admonition
|
- admonition
|
||||||
- abbr
|
- abbr
|
||||||
|
- pymdownx.caret
|
||||||
|
- pymdownx.keys
|
||||||
|
- pymdownx.mark
|
||||||
|
- pymdownx.tilde
|
||||||
|
|
||||||
# extras
|
# extras
|
||||||
extra:
|
extra:
|
||||||
|
|
|
@ -3,9 +3,11 @@
|
||||||
"version": "0.1.0",
|
"version": "0.1.0",
|
||||||
"description": "Personal website for my tildes + Gemini version of blog posts",
|
"description": "Personal website for my tildes + Gemini version of blog posts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "./bin/localdev.sh",
|
"start": "npm run dev",
|
||||||
"build": "mkdocs build",
|
"dev": "bash ./bin/localdev.sh",
|
||||||
"docker:ci": "docker build -t dock.mau.dev/ajhalili2006/tildeverse-web/build-ci:localdev ./docker"
|
"build": "bash ./bin/build.sh",
|
||||||
|
"deploy": "./bin/deploykit-pages.sh",
|
||||||
|
"docker:ci": "DOCKER_BUILDKIT=1 docker build -t dock.mau.dev/ajhalili2006/tildeverse-web/build-ci:localdev ./docker"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
mkdocs-git-revision-date-localized-plugin==1.2.0
|
mkdocs-git-revision-date-localized-plugin==1.2.0
|
||||||
mkdocs-material==9.1.4
|
mkdocs-material==9.1.9
|
||||||
mkdocs-minify-plugin==0.6.4
|
mkdocs-minify-plugin==0.6.4
|
||||||
mkdocs-redirects==1.2.0
|
mkdocs-redirects==1.2.0
|
||||||
pillow
|
pillow
|
||||||
|
|
Loading…
Reference in a new issue