Commit literally everything to kick tires

Signed-off-by: Andrei Jiroh Eugenio Halili <ajhalili2006@gmail.com>
This commit is contained in:
Andrei Jiroh Halili 2022-11-02 00:28:28 +08:00
parent 197a066ece
commit c7e8c9bf98
No known key found for this signature in database
GPG key ID: D4A928E0527DB795
11 changed files with 141 additions and 0 deletions

20
.build.yml Normal file
View file

@ -0,0 +1,20 @@
image: alpine/edge
packages:
- openssh-client
- python3
- py3-pip
sources:
- https://git.sr.ht/~ajhalili2006/tildeweb
triggers:
- action: email
condition: always
to: Public Inbox <~ajhalili2006/public-inbox@lists.sr.ht>
cc: ctrl-c.clib/~ajhalili2006 <ajhalili2006@gmail.com>
tasks:
- build:
cd tildeweb && pip3 install -r requirements.txt
mkdocs build
- deploy:
cd tildeweb
echo "StrictHostKeyChecking=no" >> ~/.ssh/config
echo "TODO: Implement SSH-based deployments over here."

6
.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,6 @@
{
"recommendations": [
"printfn.gemini-improved",
"DavidAnson.vscode-markdownlint"
]
}

8
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,8 @@
{
"yaml.schemas": {
"https://squidfunk.github.io/mkdocs-material/schema.json": "mkdocs*.yml"
},
"marquee.widgets.npm-stats.packageNames": [
"@ajhalili2006/tildeverse-web"
]
}

0
gmi/.gitkeep Normal file
View file

0
gmi/index.gmi Normal file
View file

0
markdown/.gitkeep Normal file
View file

18
markdown/index.md Normal file
View file

@ -0,0 +1,18 @@
---
title: Home
description:
---
# Well hello there!
You're viewing ~ajhalili2006's home in the tildeverse! This is where he showcase his work
in oepn source and software development, among other things.
## Directories within this hub
* [`/things`](./things) - usually screenshots and personal snippet hosting stuff
* [`/resume`](./resume) - various PDF files
* [`/projects`](./projects) - information about different projects he currently doing and in the past
## Where to stalk

2
mkdocs.ctrl-c.yml Normal file
View file

@ -0,0 +1,2 @@
INHERIT: ./mkdocs.yml
site_url: https://ctrl-c.club/~ajhalili2006

54
mkdocs.yml Normal file
View file

@ -0,0 +1,54 @@
# basics
site_name: ~ajhalili2006 on tildeverse
site_url: https://ajhalili2006.vern.cc/
site_dir: public_html
copyright: >
Copyright &copy; 2022-present - Andrei Jiroh Halili and contributors, licensed under the
<a href="https://creativecommons.org/licenses/by-sa/4.0">CC BY-SA 4.0</a> license.
docs_dir: markdown
repo_url: https://mau.dev/ajhalili2006/tildeverse-web
edit_uri: edit/main/markdown
repo_name: source code
theme:
name: material
icon:
repo: material/gitlab
feature:
- search.suggest
- search.highlight
- search.share
palette:
# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode
# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to light mode
plugins:
- search
markdown_extensions:
- toc:
permalink: true
title: On this page
- pymdownx.highlight:
anchor_linenums: true
use_pygments: true
- pymdownx.superfences
- pymdownx.tabbed:
alternate_style: true
- attr_list
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg

13
package-lock.json generated Normal file
View file

@ -0,0 +1,13 @@
{
"name": "@ajhalili2006/tildeverse-web",
"version": "0.1.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ajhalili2006/tildeverse-web",
"version": "0.1.0",
"license": "ISC"
}
}
}

20
package.json Normal file
View file

@ -0,0 +1,20 @@
{
"name": "@ajhalili2006/tildeverse-web",
"version": "0.1.0",
"description": "Personal website for my tildes + Gemini version of blog posts",
"scripts": {
"dev": "mkdocs serve",
"build": "mkdocs build"
},
"repository": {
"type": "git",
"url": "git+ssh://git@git.sr.ht/~ajhalili2006/tildeweb.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://todo.sr.ht/~ajhalili2006/tildeweb"
},
"homepage": "https://git.sr.ht/~ajhalili2006/tildeweb#readme"
}