- To start, run
ionic serve
- To start and see both iOS and Android screens, run
ionic serve -l
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
#!/bin/bash | |
# Script for creating Virtual Servers On Apache | |
# Check for the correct parameters | |
if [ $# -eq 0 ]; then | |
echo 'Você precisa passar o domínio a ser criado como parâmetro' | |
echo 'Uso: create-site your-domain.com' | |
exit 0 | |
fi |
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
<?php | |
/** | |
* Plugin Name: Email Confirmation | |
* Description: Send an email to the user with confirmation code and store form data in database until user confirms. | |
* Author: Cedric Ruiz | |
*/ | |
class EmailConfirmation | |
{ | |
const PREFIX = 'email-confirmation-'; |
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
#!/bin/bash | |
git clone [email protected]:betooliveira79/WordPress.git portal-apadep | |
cd ./portal-apadep | |
git clone [email protected]:elshamah/portal-apadep.git wp-content | |
cd ./wp-content | |
git fetch | |
git checkout release/v1.0.0 | |
git pull origin | |
curl -sS https://getcomposer.org/installer | php |