Skip to content

Commit e6d856b

Browse files
fix: Several small fixes
1 parent 9d4a91c commit e6d856b

File tree

5 files changed

+4
-12
lines changed

5 files changed

+4
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,4 +44,4 @@ config.yaml
4444

4545
# Docs
4646
doc/_build/
47-
doc/source/api/
47+
doc/source/api/

doc/source/conf.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,6 @@
105105
"python": ("https://docs.python.org/3.11", None),
106106
"numpy": ("https://numpy.org/doc/stable", None),
107107
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
108-
"pyvista": ("https://docs.pyvista.org/version/stable", None),
109108
"grpc": ("https://grpc.github.io/grpc/python/", None),
110109
"pint": ("https://pint.readthedocs.io/en/stable", None),
111110
"beartype": ("https://beartype.readthedocs.io/en/stable/", None),
@@ -209,7 +208,6 @@
209208
"examples/**/*.ipynb",
210209
"examples/**/*.py",
211210
"examples/**/*.md5",
212-
"api/ansys/visualizer/index.rst",
213211
]
214212

215213
BUILD_API = True

doc/source/index.rst

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
Allie Flowkit Python documentation |version|
22
====================================================
33

4-
The Allie Flowkit Python is a Python API that provides an interface between PyAnsys libraries and
5-
different plotting backends.
4+
The Allie Flowkit Python is a Python service that exposes features from Allie Flowkit to Python users. This documentation provides information on how to install and use the Allie Flowkit Python.
65

76
The Allie Flowkit Python offers these main features:
87

9-
* Serves as an interface between PyAnsys and other plotting libraries (although only
10-
`PyVista <https://docs.pyvista.org/version/stable/>`_ is supported currently).
11-
* Provides out-of-the box picking, viewing, and measuring functionalities.
12-
* Supplies an extensible class for adding custom functionalities.
8+
139

1410
.. grid:: 1 2 2 2
1511

docker/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ FROM python:3.12-slim
33
WORKDIR /app
44

55
# Copy the app folder and the config.yaml file
6-
COPY requirements.txt .
76
COPY app/ ./src/allie/flowkit/
87
COPY configs/config.yaml .
98

@@ -16,4 +15,4 @@ EXPOSE 8000
1615
ENV WORKERS=4
1716

1817
# Use the environment variable in CMD
19-
CMD ["sh", "-c", "allie-flowkit --host 0.0.0.0 --port 8000 --workers $WORKERS"]
18+
CMD ["sh", "-c", "allie-flowkit-python --host 0.0.0.0 --port 8000 --workers $WORKERS"]

src/allie/flowkit/__main__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,5 @@ def main():
3939
args = parse.parse_args()
4040
uvicorn.run("allie.flowkit:flowkit_service", host=args.host, port=args.port, workers=args.workers)
4141

42-
4342
if __name__ == "__main__":
4443
main()

0 commit comments

Comments
 (0)