I've just tried it using OS X and setting up my webserver to point to it.
My setup:
I put all of my test projects under Documents/sandbox
sym link to tell Apache about sandbox
sandbox -> /Users/philstrong/Documents/sandbox/
to create this:
cd /Library/WebServer/Documents/
sudo ln -s ~/Documents/sandbox/ sandbox
In Architect my preview url is: localhost/sandbox/listings
I've also tested deploying to
~/Documents/sandbox/deploy/listings
This also renders the initial panel
app.js
Code:
Ext.Loader.setConfig({
enabled: true
});
Ext.application({
views: [
'MyPanel'
],
autoCreateViewport: true,
name: 'MyApp'
});
Viewport.js
Code:
Ext.define('MyApp.view.Viewport', {
extend: 'MyApp.view.MyPanel',
renderTo: Ext.getBody(),
requires: [
'MyApp.view.MyPanel'
]
});