I hereby claim:
- I am thom8 on github.
- I am thomtoogood (https://keybase.io/thomtoogood) on keybase.
- I have a public key ASDmTVD6eejLcXLY4LpjMakNh6pEHbgtXtazCQovjLafgwo
To claim this, I am signing this object:
--- | |
# Vagrant config. | |
vagrant_ip: 192.168.88.88 | |
# Beetbox settings. | |
beet_project: wordpress | |
beet_domain: "{{ beet_project }}.local" | |
beet_site_name: "Beetbox" | |
# Wordpress settings. |
--- | |
- name: Import db. | |
command: > | |
{{ drush_path }} sql-sync -y {{ drupal_import_source }} @self | |
chdir={{ beet_root }} | |
when: drupal_import_db is defined | |
become: no | |
- name: Run database updates. | |
command: > |
<?php | |
$settings['hash_salt'] = 'Ff2eKyjMCb3Qcp6StE1ZwkqgLRaAd2a_e5Gz2gF6v2wNkox7clvZ9A43TxsBsg_48IOYRNpbGQ'; | |
$databases['default']['default'] = array ( | |
'database' => 'drupal', | |
'username' => 'drupal', | |
'password' => 'drupal', | |
'prefix' => '', | |
'host' => 'localhost', |
I hereby claim:
To claim this, I am signing this object:
Vagrant.configure('2') do |config| | |
config.vm.network 'forwarded_port', guest: 80, host: 8000, auto_correct: true | |
end |
[xdebug] | |
zend_extension="/usr/local/opt/php71-xdebug/xdebug.so" | |
xdebug.remote_enable = 1 | |
xdebug.remote_host = 127.0.0.1 | |
xdebug.remote_port = 9000 | |
xdebug.remote_handler = dbgp | |
xdebug.profiler_enable=0 | |
xdebug.profiler_enable_trigger=1 | |
xdebug.idekey=PHPSTORM | |
xdebug.remote_log="/tmp/xdebug.log" |
image: integratedexperts/circleci2-builder | |
services: | |
- docker:dind | |
stages: | |
- validate | |
- build | |
- deploy | |
validate: | |
stage: validate | |
script: |