This file contains 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
cd tmp | |
wget https://github.com/drush-ops/drush/archive/6.3.0.zip | |
unzip 6.3.0.zip | |
rm -rf 6.3.0.zip | |
mv drush-6.3.0 ~/var/php/admin/ | |
cd ~/var/php/admin/ | |
mv drush-6.3.0 drush | |
chmod 755 drush/drush | |
chmod 755 drush/drush.php | |
nano ~/etc/bash/bashrc |
This file contains 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
angular.module('myApp', ['ionic', 'myApp.services', 'myApp.controllers']) | |
.run(function(DB) { | |
DB.init(); | |
}); |