From 320909d5fbac52d1c4efff338cbb85d26faf7de7 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Mon, 28 Apr 2014 17:02:36 -0400 Subject: [PATCH] converting md to rest --- docs/running/index.rst | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs/running/index.rst b/docs/running/index.rst index f02c06df5b..a0f3838fbc 100644 --- a/docs/running/index.rst +++ b/docs/running/index.rst @@ -3,9 +3,9 @@ Running NodeBB The preferred way to start and stop NodeBB is by invoking its executable: -* `./nodebb start` Starts the NodeBB server -* `./nodebb stop` Stops the NodeBB server -* Alternatively, you may use `npm start` and `npm stop` to do the same +* ``./nodebb start`` Starts the NodeBB server +* ``./nodebb stop`` Stops the NodeBB server +* Alternatively, you may use ``npm start`` and ``npm stop`` to do the same The methods listed below are alternatives to starting NodeBB via the executable. @@ -13,7 +13,7 @@ The methods listed below are alternatives to starting NodeBB via the executable. Simple Node.js Process ----------------------- -To start NodeBB, run it with `node` (some distributions use the executable `nodejs`, please adjust accordingly): +To start NodeBB, run it with ``node`` (some distributions use the executable ``nodejs``, please adjust accordingly): .. code:: bash @@ -25,19 +25,19 @@ However, bear in mind that crashes will cause the NodeBB process to halt, bringi Supervisor Process ----------------------- -Using the [`supervisor` package](https://github.com/isaacs/node-supervisor), you can have NodeBB restart itself if it crashes: +Using the `supervisor package `_, you can have NodeBB restart itself if it crashes: .. code:: bash $ npm install -g supervisor $ supervisor app -As `supervisor` by default continues to pipe output to `stdout`, it is best suited to development builds. +As ``supervisor`` by default continues to pipe output to ``stdout``, it is best suited to development builds. Forever Daemon ----------------------- -Another way to keep NodeBB up is to use the [`forever` package](https://github.com/nodejitsu/forever) via the command line interface, which can monitor NodeBB and re-launch it if necessary: +Another way to keep NodeBB up is to use the `forever package `_ via the command line interface, which can monitor NodeBB and re-launch it if necessary: .. code:: bash