Skip to content

Instantly share code, notes, and snippets.

@mike-north
Last active October 8, 2015 15:08
Show Gist options
  • Save mike-north/a08eb0776bdef9927c10 to your computer and use it in GitHub Desktop.
Save mike-north/a08eb0776bdef9927c10 to your computer and use it in GitHub Desktop.
frontendmasters.com - Ember 2.0 workshop - project setup

Front End Masters Ember.js Workshop - Setup

Windows + OS X

Make sure you have node.js installed.

You can verify that you have node.js by running node -v and you should see something like v0.12.7

Install ember-cli

  • run npm install -g ember-cli
  • run ember -v and you should see something like this printed to the console:
version: 1.13.8
node: 0.12.7
npm: 2.13.4
os: darwin x64

Clone the already-set-up project for this course

  • run git clone git@github.com:mike-north/FEM-Ember.git github-ui
  • cd github-ui
  • npm install; bower install

OS X only (optional enhancements to speed things up)

brew install watchman

You can verify that watchman is installed by running watchman -v you should see something like 3.7.0 printed to the console

  • Install XCode command line tools
xcode-select --install
  • Install XCode (Optional)
@skippednote
Copy link

Incase you don't have bower npm i -g bower.

@nickbalestra
Copy link

I had some issues installing the ember-cli (on node 4.1.1/ npm 3.3.5) this helped:
ember-cli/ember-cli#4919

@anthonybrown
Copy link

Yep, that was me. Just do npm install -g --no-optional ember-cli or install npm install -g n and just install a version of node v10x, if you did upgrade to Node v4x and npm v3x, then you will have to install ember-cli with the --no-optional flag.

@anthonybrown
Copy link

I like to check my global modules with npm outdated -g --depth=0
Looks like ember-cli will not support node 4.0.0 in future?

→ ember -v
Future versions of Ember CLI will not support v4.0.0. Please update to Node 0.12 or io.js.
version: 1.13.8
node: 4.0.0
npm: 2.13.4
os: darwin x64

@elitenomad
Copy link

I had few issues with "git clone git@github.com:mike-north/FEM-Ember.git", i used https version of url to make it work
git clone https://github.com/mike-north/FEM-Ember.git

@web20opensource
Copy link

same me @elitenomad

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment