Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(repo): rename to vease #13

Merged
merged 3 commits into from
Oct 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
15 changes: 7 additions & 8 deletions .github/workflows/CICD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,11 @@ jobs:
target_branch: next
github_token: ${{ secrets.TOKEN }}


docker-build-squash-push:
uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master
if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master'
with:
image_name: 'geodeapp-viewer'
tag: ${{ github.ref_name }}
secrets:
TOKEN: ${{secrets.GITHUB_TOKEN}}
uses: Geode-solutions/actions/.github/workflows/docker-build-squash-push.yml@master
if: github.ref == 'refs/heads/next' || github.ref == 'refs/heads/master'
with:
image_name: "vease-viewer"
tag: ${{ github.ref_name }}
secrets:
TOKEN: ${{secrets.GITHUB_TOKEN}}
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ RUN pip3 install https://www.vtk.org/files/release/9.3/vtk_osmesa-9.3.0-cp39-cp3
ENV PYTHONPATH="/usr/local:$PYTHONPATH"
ENV PYTHON_ENV="prod"

CMD python src/geodeapp_viewer/app.py
CMD "vease-viewer"

EXPOSE 1234
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# GeodeApp-Viewer
# Vease-Viewer
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"


[project]
name = "GeodeApp-Viewer"
name = "Vease-Viewer"
version = "0.2.2"
dynamic = ["dependencies"]
authors = [
{ name="Geode-solutions", email="[email protected]" },
]
description = "GeopeApp-Viewer is the viewer microservice of the GeodeApp"
description = "Vease-Viewer is the viewer microservice of Vease"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
Expand All @@ -23,11 +23,11 @@ classifiers = [
gpu = ["vtk == 9.*"]

[project.urls]
"Homepage" = "https://github.com/Geode-solutions/GeodeApp-Viewer"
"Bug Tracker" = "https://github.com/Geode-solutions/GeodeApp-Viewer/issues"
"Homepage" = "https://github.com/Geode-solutions/Vease-Viewer"
"Bug Tracker" = "https://github.com/Geode-solutions/Vease-Viewer/issues"

[project.scripts]
geodeapp_viewer = "geodeapp_viewer.app:run_viewer"
vease-viewer = "vease_viewer.app:run_viewer"


[tool.setuptools.dynamic]
Expand All @@ -37,7 +37,7 @@ dependencies = {file = ["requirements_gpu.txt"]}
where = ["src"]

[tool.setuptools.package-data]
"geodeapp_viewer.rpc.schemas" = ["*.json"]
"vease_viewer.rpc.schemas" = ["*.json"]

[tool.semantic_release]
version_toml = [
Expand Down
2 changes: 1 addition & 1 deletion src/geodeapp_viewer/app.py → src/vease_viewer/app.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Standard library imports

# Third party imports
from opengeodeweb_viewer import vtkw_server

# Local application imports
from opengeodeweb_viewer import vtkw_server


def run_viewer():
Expand Down