Skip to content
This repository was archived by the owner on Mar 4, 2026. It is now read-only.

Commit ffdf272

Browse files
committed
feat: use mkdocs and start first page
1 parent 84bb8e2 commit ffdf272

4 files changed

Lines changed: 49 additions & 1 deletion

File tree

.github/workflows/deploy.yml

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: Deploy MkDocs to GitHub Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
concurrency:
13+
group: "pages"
14+
cancel-in-progress: true
15+
16+
jobs:
17+
deploy:
18+
runs-on: ubuntu-latest
19+
steps:
20+
- uses: actions/checkout@v4
21+
22+
- uses: actions/setup-python@v5
23+
with:
24+
python-version: "3.11"
25+
26+
- run: pip install mkdocs-material
27+
28+
- name: Build
29+
run: mkdocs build
30+
31+
- name: Upload Pages artifact
32+
uses: actions/upload-pages-artifact@v3
33+
with:
34+
path: site
35+
36+
- name: Deploy to GitHub Pages
37+
id: deployment
38+
uses: actions/deploy-pages@v4

README.MD

Lines changed: 0 additions & 1 deletion
This file was deleted.

docs/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## TierTests Public API
2+
3+
This is a rushed page to document the use of our public-facing API.

mkdocs.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
site_name: TierTests Public API
2+
nav:
3+
- Home: index.md
4+
- Authentication: authentication.md
5+
- Rate Limits: rate-limits.md
6+
- Endpoints:
7+
- Tiers: endpoints/tiers.md
8+
- Users: endpoints/users.md

0 commit comments

Comments
 (0)