-
-
Save ispern/894389 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# generate app dir | |
cd ~/Workspace/ext/sencha-touch/1.1/jsbuilder | |
./sencha.sh generate app MyApp | |
mkdir MyApp/lib/touch | |
cp ../sencha-touch* MyApp/lib/touch/ | |
cp -r ../resources MyApp/lib/touch/ | |
# compass create | |
cd MyApp/ | |
compass create resources --css-dir=css --sass-dir=scss | |
cd resources | |
rm scss/ie.scss scss/print.scss scss/screen.scss | |
rm css/ie.css css/print.css css/screen.css | |
cd ../../ | |
# generate controller or model | |
./sencha.sh generate model MyModel id:int name:string | |
./sencha.sh generate controller MyController search |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment