Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
5a9f9f2
Merge pull request #69 from pycroscopy/PyTango-dev-ACH
utkarshp1161 Apr 21, 2026
f3cc67b
Documentation
whittlegears Apr 24, 2026
8379b0f
Added deploy.yml
whittlegears Apr 24, 2026
3c3f0e9
Fix to deploy.yml
whittlegears Apr 24, 2026
bec9fc9
Updated Docs
whittlegears Apr 24, 2026
30a576b
Fixed deploy.yml
whittlegears Apr 24, 2026
310ad15
Deploy.yml
whittlegears Apr 24, 2026
4be8e10
feat: add persistent sample generation and navigation to ThermoDigita…
DomPTech Apr 17, 2026
76118db
refactor: update ThermoDigitalTwin properties and methods for simpler…
DomPTech Apr 22, 2026
7a76d4f
chore: add .DS_Store to gitignore
DomPTech Apr 24, 2026
0f8064b
feat: added a general `run_mcp_and_devices.py` script for starting Ta…
DomPTech Apr 27, 2026
16d1b79
feat: add user-defined host and port inputs in `run_mcp_and_devices.py`
DomPTech Apr 27, 2026
2242c7c
Added Tango Database Docs
whittlegears Apr 27, 2026
65f2ae4
Fix: new documentation layout
whittlegears Apr 27, 2026
6dd8393
docs: add architecture figure to markdown homepage
whittlegears Apr 27, 2026
3880d56
Fix: tango db mode
whittlegears Apr 27, 2026
81e6cbe
refactor: improved+cleaner code in `run_mcp_and_devices.py` with stro…
DomPTech Apr 29, 2026
c3fc03a
Fix issue #76: Readme Installation
whittlegears Apr 29, 2026
7195e2c
Merge pull request #75 from DomPTech/main
AustinHouston Apr 29, 2026
9bb0c5d
Merge pull request #70 from pycroscopy/PyTango-dev-ACH
AustinHouston Apr 29, 2026
4ceef8c
Merge pull request #73 from whittlegears/main
AustinHouston Apr 29, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
43 changes: 43 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: Deploy MyST Site
on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: "pages"
cancel-in-progress: false

jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Setup MyST
run: npm install -g mystmd
- name: Build site
env:
BASE_URL: /asyncroscopy
run: |
cd docs
myst build --html
touch _build/html/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs/_build/html'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -206,5 +206,9 @@ marimo/_static/
marimo/_lsp/
__marimo__/

.DS_Store

PythonPackages-AS-1.15/
llm-context/
llm-context/
# MyST build outputs
_build
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ See - docs/dev_guide.md
### Core installation (simulation mode)

```bash
pip install .
pip install --find-links ./stubs -e .
```

or with `uv`:
Expand Down
Loading
Loading