Skip to content

installation

pierr edited this page Nov 18, 2014 · 13 revisions

Installation

Desktop configuration

  • 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 do ctrl+shift+p then type install 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 brunchnpm install -g brunch
  • Install bower npm install -g bower
  • Install mochanpm install -g mocha

Application configuration

  • 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 or brunch w.
  • Launch the server and build brunch w --server
  • Open the public/ dir to see the result.
  • Write your code in app/.
Clone this wiki locally