Skip to content

Commit 67d895a

Browse files
authored
Merge pull request #1 from Kitware/vue3-ui
Vue3 UI
2 parents 998ae44 + 7e9d31a commit 67d895a

File tree

25 files changed

+2693
-11
lines changed

25 files changed

+2693
-11
lines changed

docs/setup/for_app_developers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ python -m quickview.app --data /path/to/your/data.nc --conn /path/to/connectivit
3838

3939
To launch server only (no browser popup), use
4040
```
41-
python --server -m quickview.app --data /path/to/your/data.nc --conn /path/to/connectivity.nc
41+
python -m quickview.app --data /path/to/your/data.nc --conn /path/to/connectivity.nc --server
4242
```
4343

4444
----

pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ dependencies = [
1515
"pyproj>=3.6.1",
1616
"netCDF4>=1.6.5",
1717
"pyinstaller",
18+
"trame-dataclass",
1819
]
1920
requires-python = ">=3.13"
2021
readme = "README.md"
@@ -42,6 +43,7 @@ quickview = [
4243

4344
[project.scripts]
4445
quickview = "quickview.app:main"
46+
quickview2 = "quickview.app2:main"
4547

4648
[tool.ruff.lint.per-file-ignores]
4749
# Ignore star import issues in ParaView plugins

quickview/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from quickview.interface import EAMApp
1010

1111

12-
def serve():
12+
def main():
1313
parser = argparse.ArgumentParser(
1414
prog="eamapp.py", description="Trame based app for visualizing EAM data"
1515
)
@@ -57,4 +57,4 @@ def serve():
5757

5858

5959
if __name__ == "__main__":
60-
serve()
60+
main()

0 commit comments

Comments
 (0)