Base skeleton App for JSSDK.
Handles user login and displays a status message in a sample widget.
Download/Clone a release and use it as a skeleton for your project.
It uses the standard stack :
- Bootstrap for html layout.
- Bower for js libraries management.
- Grunt for building the app.
- Backbone.js as the js MVC.
Along with our JSSDK components :
Install the dependencies
npm install
bower install
Build (without cache busting)
grunt build
Watch for future code changes (and automatically rebuild)
grunt watch
Edit the app/main.js file to match your Project's settings (here we use the "musicbrainz" project on a local client)
squid_api.setup({
"clientId" : "local",
"projectId" : "musicbrainz"
});
View the build results
open dist/index.html
Now you can follow our tutorials to deep dive into analytical apps development