Skip to content

Commit 2301b3d

Browse files
committed
Initial release.
0 parents  commit 2301b3d

File tree

129 files changed

+34064
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

129 files changed

+34064
-0
lines changed

.github/FUNDING.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
github: jgoutin

.github/workflows/lint.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Lint
2+
3+
on:
4+
push:
5+
branches: ["**"]
6+
pull_request:
7+
branches: ["**"]
8+
9+
jobs:
10+
lint:
11+
runs-on: ubuntu-latest
12+
env:
13+
FORCE_COLOR: "1"
14+
steps:
15+
- uses: actions/checkout@v5
16+
with:
17+
fetch-depth: 1
18+
19+
- name: Install uv
20+
uses: astral-sh/setup-uv@v7
21+
with:
22+
enable-cache: true
23+
activate-environment: true
24+
25+
- name: Install dependencies
26+
run: uv sync --frozen --group lint
27+
28+
- name: Python linting
29+
run: ruff check .
30+
31+
- name: Python format checking
32+
run: ruff format --check .
33+
34+
- name: Python type checking
35+
run: mypy .

.github/workflows/page.yml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
---
2+
name: Webpage & Documentation
3+
4+
on:
5+
push:
6+
branches: ["main"]
7+
permissions:
8+
contents: read
9+
pages: write
10+
id-token: write
11+
12+
concurrency:
13+
group: "pages"
14+
cancel-in-progress: false
15+
16+
jobs:
17+
deploy:
18+
environment:
19+
name: github-pages
20+
url: ${{ steps.deployment.outputs.page_url }}
21+
runs-on: ubuntu-latest
22+
steps:
23+
- name: Checkout repository
24+
uses: actions/checkout@v5
25+
26+
- name: Setup Pages
27+
uses: actions/configure-pages@v5
28+
29+
- name: Install uv
30+
uses: astral-sh/setup-uv@v7
31+
with:
32+
enable-cache: true
33+
activate-environment: true
34+
35+
- name: Install dependencies
36+
run: uv sync --frozen --group docs
37+
38+
- name: Build documentation
39+
run: mkdocs build
40+
env:
41+
AWS_DEFAULT_REGION: us-east-1
42+
43+
- name: Upload artifact
44+
uses: actions/upload-pages-artifact@v3
45+
with:
46+
path: site/
47+
48+
- name: Deploy to GitHub Pages
49+
id: deployment
50+
uses: actions/deploy-pages@v4

.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Tests generated files
2+
**/.cache
3+
.coverage
4+
.pytest_cache/
5+
.venv/
6+
7+
# Build generated files
8+
build/
9+
dist/
10+
.eggs/
11+
*.egg-info/
12+
**/*.tar.gz
13+
**/*.log
14+
site/
15+
docs/openapi.yml
16+
17+
# Python compiled files
18+
__pycache__/
19+
*.py[cod]
20+
21+
# OS generated files
22+
.DS_Store
23+
.DS_Store?
24+
._*
25+
.Spotlight-V100
26+
.Trashes
27+
ehthumbs.db
28+
[Dd]esktop.ini
29+
Thumbs.db
30+
*~
31+
*.bak
32+
33+
# IDE generated files
34+
.project
35+
.pydevproject
36+
.spyproject
37+
.spyderproject
38+
.settings/
39+
.idea/
40+
.vscode/

0 commit comments

Comments
 (0)