You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/env bash
-
- #== Import script args ==
-
- github_token=$(echo "$1")
-
- #== Bash helpers ==
-
- function info {
- echo " "
- echo "--> $1"
- echo " "
- }
-
- #== Provision script ==
-
- info "Provision-script user: `whoami`"
-
- info "Configure composer"
- composer config --global github-oauth.github.com ${github_token}
- echo "Done!"
-
- info "Install plugins for composer"
- composer global require "fxp/composer-asset-plugin:^1.2.0" --no-progress
-
- info "Install codeception"
- composer global require "codeception/codeception=2.0.*" "codeception/specify=*" "codeception/verify=*" --no-progress
- echo 'export PATH=/home/vagrant/.config/composer/vendor/bin:$PATH' | tee -a /home/vagrant/.profile
-
- info "Install project dependencies"
- cd /app
- composer --no-progress --prefer-dist install
-
- info "Init project"
- ./init --env=Development --overwrite=y
-
- info "Apply migrations"
- ./yii migrate <<< "yes"
-
- info "Create bash-alias 'app' for vagrant user"
- echo 'alias app="cd /app"' | tee /home/vagrant/.bash_aliases
-
- info "Enabling colorized prompt for guest console"
- sed -i "s/#force_color_prompt=yes/force_color_prompt=yes/" /home/vagrant/.bashrc
|