Skip to content

Commit d92fba8

Browse files
author
f@bi.an
committed
docs: update AGENTS.md to reflect the increase in markdown files and add render.yaml for deployment configuration
1 parent 61f30c2 commit d92fba8

File tree

2 files changed

+35
-1
lines changed

2 files changed

+35
-1
lines changed

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This file provides instructions for AI coding agents working on the 0xfab1 MkDoc
44

55
## Project Overview
66

7-
This is a personal website built with MkDocs Material theme, containing 449+ markdown files across tech documentation, making guides, and personal content. The site features:
7+
This is a personal website built with MkDocs Material theme, containing 500+ markdown files across tech documentation, making guides, and personal content. The site features:
88

99
- **Static Site Generator**: MkDocs with Material theme
1010
- **Content**: Tech documentation, tutorials, personal projects, and making guides

render.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
services:
2+
- type: web
3+
name: 0xfab1-website
4+
runtime: static
5+
buildCommand: |
6+
pip install --upgrade pip
7+
pip install -r requirements.txt
8+
python -m mkdocs build
9+
staticPublishPath: ./site
10+
domains:
11+
- 0xfab1.net
12+
headers:
13+
- path: /*
14+
name: X-Frame-Options
15+
value: DENY
16+
- path: /*
17+
name: X-Content-Type-Options
18+
value: nosniff
19+
- path: /*
20+
name: Referrer-Policy
21+
value: strict-origin-when-cross-origin
22+
- path: /*
23+
name: Permissions-Policy
24+
value: geolocation=(), microphone=(), camera=()
25+
- path: /*
26+
name: X-Robots-Tag
27+
value: index, follow
28+
routes:
29+
- type: rewrite
30+
source: /*
31+
destination: /index.html
32+
envVars:
33+
- key: PYTHON_VERSION
34+
value: "3.11"

0 commit comments

Comments
 (0)