Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Moved quickstart into getting started chapter and removed quickstart …
Browse files Browse the repository at this point in the history
…directory.
  • Loading branch information
Joe Catera committed Jun 10, 2013
1 parent 587d66a commit 3dc1893
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 307 deletions.
29 changes: 14 additions & 15 deletions docs/dev_guide/getting_started/quickstart.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,31 @@
Mojito Quickstart
=================

.. _mojito_qs-prereqs:
.. _mojito_quickstart-reqs:

Prerequisites
=============
Requirements
============

**System:** Unix-based system.

**Software:** `Node.js (>= 0.6.0 < 0.9.0) <http://nodejs.org/>`_, `npm (> 1.0.0) <http://npmjs.org/>`_
**Software:** `Node.js (>= 0.8.0) <http://nodejs.org/>`_, `npm (> 1.0.0) <http://npmjs.org/>`_

.. _mojito_qs-install:
.. _mojito_quickstart-install:

Installation Steps
==================

#. Get Mojito from the npm registry and globally install Mojito so that it can be run from
the command line. You may need to use ``sudo`` if you run into permission errors.
#. Globally install the Mojito CLI package (``mojito-cli``) from the npm registry
so that you can run Mojito commands. You may need to use ``sudo`` if
you run into permission errors.

``$ npm install mojito -g``
``$ npm install mojito-cli -g``

#. Confirm that Mojito has been installed by running the help command.

``$ mojito help``

.. _mojito_qs-create:
.. _mojito_quickstart-create_app:

Create a Mojito Application
===========================
Expand All @@ -34,7 +35,7 @@ Create a Mojito Application
#. ``$ cd hello_world``
#. ``$ mojito create mojit myMojit``

.. _mojito_qs-modify:
.. _mojito_quickstart-modify_app:

Modify Your Application
=======================
Expand All @@ -55,19 +56,17 @@ To make the application return a string we want, replace the code in
};
});
.. _mojito_qs-running:
.. _mojito_quickstart-run_app:

Running the Application
=======================

#. From the ``hello_world`` application directory, start Mojito:

``$ mojito start``

#. Go to http://localhost:8666/@myMojit/index to see your application.

#. Stop your application by pressing **Ctrl-C**.

For a more in-depth tutorial, please see `Mojito: Getting Started <../getting_started/>`_. To learn more about Mojito, see
the `Mojito Documentation <../>`_.
For a more in-depth tutorial, please see `Tutorial: Creating Your First Application <mojito_getting_started_tutorial.html>`_.
To learn more about Mojito, see the `Mojito Documentation <../>`_.

220 changes: 0 additions & 220 deletions docs/dev_guide/quickstart/conf.py

This file was deleted.

72 changes: 0 additions & 72 deletions docs/dev_guide/quickstart/index.rst

This file was deleted.

0 comments on commit 3dc1893

Please sign in to comment.