File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 38
38
@$(SPHINXBUILD ) -M latex " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
39
39
python validate_png.py # clean-up GIFs mislabeled as PNG
40
40
cd $(BUILDDIR ) /latex && latexmk -r latexmkrc -pdf * .tex -interaction=nonstopmode || true
41
- (test -f $( BUILDDIR) /latex/* .pdf && echo pdf exists) || exit 1
41
+ (test -f $( BUILDDIR) /latex/pymapdl-Documentation- * .pdf && echo pdf exists) || exit 1
42
42
43
43
checklinks :
44
44
$(SPHINXBUILD ) -b linkcheck $(SPHINXOPTS ) $(LINKCHECKDIR )
Original file line number Diff line number Diff line change @@ -55,6 +55,22 @@ directly from the command line.
55
55
You can then use your host Python environment to connect to that MAPDL
56
56
instance.
57
57
58
+ .. graphviz ::
59
+
60
+ digraph {
61
+ node [];
62
+ subgraph cluster_frontend {
63
+ label="*HOST *";
64
+ Python;
65
+ subgraph cluster_backend {
66
+ MAPDL;
67
+ label="*DOCKER *";
68
+ }
69
+ }
70
+ Python -> MAPDL
71
+ MAPDL -> Python
72
+ }
73
+
58
74
Because this image does not contain a license server, you must enter your
59
75
license server IP address in the ``ANSYSLMD_LICENSE_FILE `` environment variable.
60
76
You can’t perform that action at this time.
0 commit comments