BADCamp continues its commitment to open-source development by open-sourcing itself!
Submit pull requests to https://github.com/badcamp/badcamp-2016-artifact
Visit http://editorconfig.org/ for instructions on how to configure your IDE or
editor to use the included .editorconfig
file.
You are welcome to use any local development environment you'd like, but a DrupalVM configuration is included for your convenience and is preferred.
- VirtualBox: 5.x
- Vagrant: 1.7.x
- Ansible: 1.9.x
brew cask install virtualbox
brew cask install vagrant
brew install ansible
Prepare the local site:
composer install
npm install
Configure:
cp custom.config.yml config.yml
Complete the installation:
# Copy Drush aliases.
cp ./drush/badcamp2016.aliases.drushrc.php ~/.drush
# Clear Drush cache.
drush cc drush
# Turn on Drupal VM.
vagrant up
# Create local settings.
./scripts/local_settings.sh
# Install.
./scripts/install.sh
Configure Drush to use the site:
drush site-set @badcamp2016.local
vagrant halt