Last active
July 13, 2016 09:11
-
-
Save ZAYEC77/8eff83a641becfc5169f 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
db-create: | |
mysql -u user -p -e 'CREATE SCHEMA `db-name` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;' | |
db-update: | |
php yii modules-migrate | |
message: | |
php yii message src/messages/config.php | |
vendors-update: | |
composer update | |
vendors-install: | |
composer install -o | |
test: | |
php codecept.phar run | |
codecept-download: | |
wget http://codeception.com/codecept.phar | |
codecept-bootstrap: | |
php codecept.phar bootstrap && php codecept.phar build | |
deploy: | |
echo "Not implemented" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment