MooseDocs w/ Animal Codes #17436
-
Each Animal code has it's own moosedoc.py which is used to start a document server on the localhost (127.0.0.1:8000). I would like to have all the Animal code document servers running at the same time. However I cannot launch multiple document servers on different ports - when the second doc server is launched it simply overwrites the first. Is there a way to start a document server that contains all documentation for all Animal codes, as well as RELAP7? It seems strange that I cannot start different servers on different ports. Thanks very much for any help you're able to offer. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
You can change the port for the MooseDocs build command using the
and the built pages would be available on |
Beta Was this translation helpful? Give feedback.
-
Note that while the serve option is the easiest way to get the documentation going, it isn't required to view the documentation. We suggest using If you would like to just generate the raw static site in one go (which you can also open with your browser by opening the html), you can generate with
in which you fill |
Beta Was this translation helpful? Give feedback.
Note that while the serve option is the easiest way to get the documentation going, it isn't required to view the documentation. We suggest using
--serve
because (1) it is convenient, and (2) it auto updates from source so that you can make changes and see the changes almost real time.If you would like to just generate the raw static site in one go (which you can also open with your browser by opening the html), you can generate with
in which you fill
<directory>
with a directory where you want the site to be built into. Once built, you can traverse into said directory, start with theindex.html
page and browse as needed without having to s…