Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

I cant set propperly the Ember.js enviroment

I got this error in my console after set the enviroment as the tutorial specify

file:///Users/rdiaz/Desktop/Ember.js%20Proyect/js/libs/jquery-1.11.3.js file:///Users/rdiaz/Desktop/Ember.js%20Proyect/js/libs/ember-handlebars-loader-0.0.2.js file:///Users/rdiaz/Desktop/Ember.js%20Proyect/blogger.js GET https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css [HTTP/1.1 304 Not Modified 335ms] GET https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css [HTTP/1.1 304 Not Modified 182ms] GET https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js [HTTP/1.1 304 Not Modified 181ms] GET http://builds.emberjs.com/release/ember.debug.js [HTTP/1.1 200 OK 5642ms] GET http://builds.emberjs.com/release/ember-template-compiler.js [HTTP/1.1 304 Not Modified 320ms] TypeError: Ember.Appplication is undefined blogger.js:1:0 "DEBUG: For more advanced debugging, install the Ember Inspector from https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/" ember.debug.js:4888:5

my html looks like this:

<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Royer's Blog | Ember JS</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap-theme.min.css">

    <script type="text/javascript" src="js/libs/jquery-1.11.3.js" ></script>
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/js/bootstrap.min.js"></script>
</head>
<body>

    <script src="http://builds.emberjs.com/release/ember.debug.js"></script>
    <script src="http://builds.emberjs.com/release/ember-template-compiler.js"></script>
    <script type="text/javascript" src="js/libs/ember-handlebars-loader-0.0.2.js" ></script>
    <script type="text/javascript" src="blogger.js" ></script>
</body>

</html>

There is only new version of the Framework, what can i do to be able to follow up with the tutorial if the specifications are wrong?