Skip to content

Commit

Permalink
Development: Replace invalid commands (#9079)
Browse files Browse the repository at this point in the history
  • Loading branch information
N0W0RK committed Jul 20, 2024
1 parent 935ea61 commit 2aef342
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docs/dev/setup/client.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ command:

.. code:: bash
npm run serve
npm run start
This compiles TypeScript code to JavaScript code, starts the live reloading feature
(i.e. whenever you change a TypeScript file and save, the client is automatically reloaded with the new code)
Expand All @@ -41,7 +41,7 @@ and will start the client application in your browser on
with your TUM Online account.

.. HINT::
In case you encounter any problems regarding JavaScript heap memory leaks when executing ``npm run serve`` or
In case you encounter any problems regarding JavaScript heap memory leaks when executing ``npm run start`` or
any other scripts from ``package.json``, you can adjust a
`memory limit parameter <https://nodejs.org/docs/latest-v16.x/api/cli.html#--max-old-space-sizesize-in-megabytes>`__
(``node-options=--max-old-space-size=6144``) which is set by default in the project-wide `.npmrc` file.
Expand Down
2 changes: 1 addition & 1 deletion docs/dev/setup/server.rst
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ The recommended way is to run the server and the client separately. This provide
module replacement in the client.

* **Artemis (Server):** The server will be started separated from the client. The startup time decreases significantly.
* **Artemis (Client):** Will execute ``npm install`` and ``npm run serve``. The client will be available at
* **Artemis (Client):** Will execute ``npm install`` and ``npm run start``. The client will be available at
`http://localhost:9000/ <http://localhost:9000/>`__ with hot module replacement enabled (also see
`Client Setup <#client-setup>`__).

Expand Down

0 comments on commit 2aef342

Please sign in to comment.