npm install jsdoc
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
# Instalar con YUM | |
yum install git -y | |
# Verificar la instalación | |
git --version |
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
# Show network interfaces | |
ifconfig -a | |
ip link show | |
# Download repository | |
cd /etc/yum.repos.d/ | |
wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo | |
# Update: | |
yum update -y | |
# Instalar EPEL: | |
yum install epel-release -y |
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
# Instalar mediante composer | |
composer require cakephp/cakephp:"~3.1" |
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
# Composer installation | |
composer create-project --prefer-dist cakephp/app bookmarker | |
Installing cakephp/app (3.1.1) | |
- Installing cakephp/app (3.1.1) | |
Downloading: 100% | |
Created project in bookmarker | |
Loading composer repositories with package information | |
Installing dependencies (including require-dev) | |
... |
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
# Agregar configuración del usuario actual | |
git config --global user.email "[email protected]" | |
git config --global user.name "Lenin Meza" | |
# Configuración del push | |
git config --global push.default simple | |
# Conocer la lista de repositorios | |
git remote | |
# Conocer las URL de la lista de repositorios | |
git remote -v | |
# obtener información del repositorio |
pear channel-discover pear.phpdoc.org
pear install phpdoc/phpDocumentor
phpdoc -o HTML:default:default -d /var/www/mysite.com/html/ -t /var/www/mysite.com/docs/
npm install -g phonegap
npm install -g cordova
phonegap create HelloWorld
cd HelloWorld
phonegap run android
npm install express -g
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
# curl -LsS http://symfony.com/installer -o ./symfony | |
# ./symfony new chipotle lts | |
✔ Symfony 2.8.0 was successfully installed. | |
# chown -R apache:apache ./chipotle/* | |
# chmod -R 775 ./chipotle/* | |
# cd chipotle | |
# nano app/config/parameters.yml | |
# /bin/php app/console doctrine:database:create | |
Created database `symfony_lts` for connection named default |