Skip to content

Commit 35fcecc

Browse files
committed
update docs
1 parent 0284967 commit 35fcecc

57 files changed

Lines changed: 13812 additions & 2055 deletions

Some content is hidden

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

.dockerignore

Lines changed: 19 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -1,81 +1,33 @@
1-
# Git
21
.git
2+
.github
33
.gitignore
4+
.gitattributes
45

5-
# Python
6+
.venv
7+
venv
68
__pycache__
7-
*.pyc
8-
*.pyo
9-
*.pyd
10-
.Python
11-
env
12-
pip-log.txt
13-
pip-delete-this-directory.txt
14-
.tox
9+
*.py[cod]
10+
.pytest_cache
11+
.mypy_cache
12+
.ruff_cache
13+
htmlcov
1514
.coverage
16-
.coverage.*
17-
.cache
18-
nosetests.xml
1915
coverage.xml
20-
*.cover
21-
*.log
22-
.git
23-
.mypy_cache
24-
.pytest_cache
25-
.hypothesis
16+
*.egg-info
2617

27-
# Virtual environments
28-
_venv
29-
venv
30-
ENV
31-
env
32-
.venv
18+
**/node_modules
19+
examples/react_dashboard/dist
3320

34-
# IDE
3521
.vscode
3622
.idea
3723
*.swp
38-
*.swo
39-
*~
40-
41-
# OS
4224
.DS_Store
43-
.DS_Store?
44-
._*
45-
.Spotlight-V100
46-
.Trashes
47-
ehthumbs.db
48-
Thumbs.db
49-
50-
# Build artifacts
51-
build/
52-
dist/
53-
*.egg-info/
54-
*.egg
5525

56-
# Documentation
57-
docs/
58-
*.md
59-
!README.md
26+
maps
27+
tours
28+
traces
29+
dist
30+
build
6031

61-
# Tests
62-
tests/
63-
test_*
64-
*_test.py
65-
66-
# CI/CD
67-
.github/
68-
.gitlab-ci.yml
69-
.travis.yml
70-
.circleci/
71-
72-
# Temporary files
73-
*.tmp
74-
*.temp
75-
out.txt
76-
77-
# Local development
78-
maps/
79-
tours/
80-
contracts/
81-
traces/
32+
tests
33+
.hypothesis
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Setup Understand-First (uv)
2+
description: Install Python and sync dependencies from uv.lock (dev + examples extras).
3+
inputs:
4+
python-version:
5+
description: Python version for setup-python
6+
required: true
7+
runs:
8+
using: composite
9+
steps:
10+
- name: Set up Python
11+
uses: actions/setup-python@v5
12+
with:
13+
python-version: ${{ inputs.python-version }}
14+
- name: Install uv
15+
uses: astral-sh/setup-uv@v5
16+
with:
17+
enable-cache: true
18+
- name: Sync environment
19+
shell: bash
20+
run: uv sync --all-extras --frozen

.github/dependabot.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
groups:
8+
python-minor:
9+
patterns:
10+
- "*"
11+
12+
- package-ecosystem: "github-actions"
13+
directory: "/"
14+
schedule:
15+
interval: "weekly"
16+
17+
- package-ecosystem: "npm"
18+
directory: "/examples/react_dashboard"
19+
schedule:
20+
interval: "weekly"
21+
22+
- package-ecosystem: "npm"
23+
directory: "/ide/vscode/understand-first"
24+
schedule:
25+
interval: "weekly"

.github/workflows/accessibility-testing.yml

Lines changed: 0 additions & 125 deletions
This file was deleted.

.github/workflows/ci-tests.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)