Skip to content

Development Workflow

Marshall Bowers edited this page Nov 27, 2016 · 6 revisions

Setup Your Development Environment

If you haven't already, read through our guide on Setting Up Your Development Environment.

Install Dependencies

# Navigate to your Rotonde directory
$ cd ~/path/to/Rotonde

# Install the development dependencies through npm
$ npm install

# Run the `bootstrap` script to initialize all of the Rotonde packages
$ npm run bootstrap

Running a Rotonde Development Server

To run a Rotonde development server locally, you will need to run rotonde-core.

# Navigate to the `rotonde-core` package directory
$ cd ~/path/to/Rotonde/packages/rotonde-core

# Start the development server
$ npm run dev

You should now have a Rotonde server running on localhost:3000.

Clone this wiki locally