-
Notifications
You must be signed in to change notification settings - Fork 17
installation
pierr edited this page Nov 18, 2014
·
13 revisions
- Install Google Chrome and the Postman extension.
- Install Git Bash
- Install Sublime Text, and install Package Control, and then the following list of plugins:
AdvancedNewFile,Alignment,Coffee Formatter,CoffeeScript,Emmet,Git,Handlebars,HTML Snippets,Http Requester,Jade,JsFormat,LoremIpsum,Package Control,Stylus,SublimeLinter,Tomorrow Color Schemes,DocBlockr, MarkdownPreview
In order to install a plugin, you have to doctrl+shift+p
then typeinstall package
and then the name of the package. - Install ternjs plugin for sublime
- Ternjs documentation
- Install node js
- Install Python and add it into the PATH.
- Install brunch
npm install -g brunch
- Install bower
npm install -g bower
- Install mocha
npm install -g mocha
- Get your application from the source control
- go into the
app/
directory of the SPA project - Install node dependencies
npm install --no-optional
- Install bower dependencies
bower install --no-optional
- Build the project with
brunch b
orbrunch w
. - Launch the server and build
brunch w --server
- Open the public/ dir to see the result.
- Write your code in
app/
.