Skip to content

Synchronizing Sencha Architect and Sencha’s CMD Compiler

Updated: at 11:18 PM

Phil Strong has an excellent article on how to update an existing Sencha Architect (SA) project so that it will work with Sencha’s CMD compiler.  Basically, the problem is that SA and CMD do not agree on where the app.js should be by default.  This article will give you a recipe to do a file/save as from SA and then turn that new directory with the SA project into a place where you can, from the command prompt say: “sencha app build production” or “sencha app build testing” to generate a completely optimized version of your web app for deployment.

For those that don’t know what either is, Sencha Architect is an awesome tool that Sencha started working on literally 4 years ago and finally released about a year ago.  It’s a beautiful tool (not free, but not crazy expensive) that allows you to visually design and build your Sencha applications (both ExtJS and Sencha Touch).

image

CMD is a standalone command line tool that allows you to build your Sencha apps and basically do all the JavaScript optimizations and minimizations along with doing the same for CSS.  It takes you Sencha App and basically makes it load with a minimal number of files being downloaded over the wire.

image

The Steps

 

That's it.  Now, you should be able to continue to develop with SA and CMD.