Skip to content
This repository has been archived by the owner on Jan 3, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (9 loc) · 997 Bytes

readme.md

File metadata and controls

16 lines (9 loc) · 997 Bytes

An example single-page application that uses Ember.js for the client framework and ember-mobile and Windows Azure Mobile Services for data.

  1. Provision a new Windows Azure Mobile service and create a table named 'posts'. Obtain the connection information for this new table. This has some details on accomplishing that.

  2. Edit the app.js file and use the values obtained from the previous step to fill out this line:

     var client = new WindowsAzure.MobileServiceClient('https://yourmobilesvc.azure-mobile.net/', 'yourmobilesvckey');
    
  3. Use the following commands from the emberapp directory to install the various bits it requires:

     npm install
     bower install
    

    You may also need to install Ruby, and the Compass gem.

  4. Start the local server with grunt server. This should launch the browser and display the application.