thinkshout / bene-project
ThinkShout's project template for Drupal 8 projects with composer
Installs: 1 160
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 42
Type:project
Requires
- composer/installers: ^1.2
- cweagans/composer-patches: ~1.6
- drupal-composer/drupal-scaffold: ^2.2
- drupal/console: ~1.0
- drupal/pantheon_advanced_page_cache: ^1.0
- drush/drush: ^8.1.10
- oomphinc/composer-installers-extender: ^1.1
- thinkshout/bene: ^8.2
Requires (Dev)
- behat/mink: ^1.7
- behat/mink-goutte-driver: ^1.2
- dmore/behat-chrome-extension: ^1.3
- drupal/coder: ^8.3
- drupal/drupal-extension: ^3.4
- drush-ops/behat-drush-endpoint: ^9.3
- jcalderonzumba/gastonjs: ^1.2
- jcalderonzumba/mink-phantomjs-driver: ^0.3.3
- mikey179/vfsstream: ^1.6
- phpunit/phpunit: ^7.5
- thinkshout/robo-drupal: ^1.0.0
- vlucas/phpdotenv: ^2.2
- dev-master
- dev-53-remote-origin
- dev-51-out-of-memory-error
- dev-use-packagist
- dev-install-script-should-call-theme-script
- dev-dev-pantheon
- dev-develop
- dev-repo-redux
- dev-fix-duplicate-bene-require
- dev-pantheon
- dev-bene_features_and_promo_redirect
- dev-theme-generalization
- dev-4-fix-install
- dev-april
- dev-dev
This package is auto-updated.
Last update: 2024-10-12 07:20:02 UTC
README
Bene Project
New Projects
Create a Git Repository
Go to github https://github.com/new and create a new repository. The script expects an empty repository. Do not put anything in it or the script will fail.
Continuous Integration
See the instructions at .circleci/README.md
to configure CircleCI.
Initial Build
Create a local project (change 'my-bene-project' to the name of your project):
composer create-project thinkshout/bene-project --stability dev --no-interaction ~/Sites/my-bene-project
Create an empty database in your environment to install into:
mysql -uroot -p -e "create database benesite"
CD into the ~/Sites/my-bene-project
directory, and build your site into your new directory with this command:
./scripts/install.sh
There are several prompts along the way with a few things to keep in mind:
- A prompt will ask for the database name later in the process. If the database does not exist, the script will fail. Use the database created above, but be aware that if you choose an existing one, the contents will be cleared out by the script.
Done! Your output script should verify with a message similar to:
Finished installing Bene.
Change directory into ~/Sites/bene-new-project and run
drush uli
Existing projects
Initial build (existing repo)
From within your ~/Sites directory run:
git clone git@github.com:thinkshout/new-project-name.git
cd new-project-name
composer install
Testing
Test are run automatically on CircleCI, but can be run locally as well with:
robo test
Updating the code
Updating the install profile
All work on the profile should occur in web/profiles/bene
. Commit and push changes to that repo. To update the profile
within your project run robo dev:update
from your project
Updating contrib modules
With composer require drupal/{module_name}
you can download new dependencies to your
installation.
composer require drupal/devel:8.*
Applying patches to contrib modules
If you need to apply patches (depending on the project being modified, a pull request is often a better solution), you can do so with the composer-patches plugin.
To add a patch to drupal module "foobar" insert the patches section in the extra
section of composer.json:
"extra": { "patches": { "drupal/foobar": { "Patch description": "URL to patch" } } }
Updating Drupal Core
This project will attempt to keep all of your Drupal Core files up-to-date; the project drupal-composer/drupal-scaffold is used to ensure that your scaffold files are updated every time drupal/core is updated. If you customize any of the "scaffolding" files (commonly .htaccess), you may need to merge conflicts if any of your modfied files are updated in a new release of Drupal core.
Follow the steps below to update your core files.
- Run
composer update drupal/core --with-dependencies
to update Drupal Core and its dependencies. - Run
git diff
to determine if any of the scaffolding files have changed. Review the files for any changes and restore any customizations to.htaccess
orrobots.txt
. - Commit everything all together in a single commit, so
web
will remain in sync with thecore
when checking out branches or runninggit bisect
. - In the event that there are non-trivial conflicts in step 2, you may wish
to perform these steps on a branch, and use
git merge
to combine the updated core files with your customized files. This facilitates the use of a three-way merge tool such as kdiff3. This setup is not necessary if your changes are simple; keeping all of your modifications at the beginning or end of the file is a good strategy to keep merges easy.
Notes
Development set-up
This is a Drupal 8 site built using the robo taskrunner.
First you need to install composer.
brew install composer
Next add ./vendor/bin
to your PATH, at the beginning of your PATH variable, if it is not already there (only if not using a new Bene install)
Check with:
echo $PATH
Update with:
export PATH=./vendor/bin:$PATH
You can also make this change permanent by editing your ~/.zshrc
or ~/.bashrc
file:
export PATH="./vendor/bin:...
Building (automatically done for new repo)
Running the robo configure
command will read the .env.dist, cli arguments and
your local environment (DEFAULT_PRESSFLOW_SETTINGS
) to generate a .env file. This file will be used to set
the database and other standard configuration options. If no database name is provided, the project name and the git branch name will be used. If no profile name is provided, "standard" will be used. Note the argument to pass to robo configure can include: --db-pass; --db-user; --db-name; --db-host; --profile.
robo configure --profile=bene
# Use an alternate DB password
robo configure --profile=bene --db-pass=<YOUR LOCAL DATABASE PASSWORD>
# Use an alternate DB name
robo configure --profile=bene --db-name=<YOUR DATABASE NAME>
The structure of DEFAULT_PRESSFLOW_SETTINGS
if you want to set it locally is (set by default for new repos):
DEFAULT_PRESSFLOW_SETTINGS_={"databases":{"default":{"default":{"driver":"mysql","prefix":"","database":"","username":"root","password":"root","host":"localhost","port":3306}}},"conf":{"pressflow_smart_start":true,"pantheon_binding":null,"pantheon_site_uuid":null,"pantheon_environment":"local","pantheon_tier":"local","pantheon_index_host":"localhost","pantheon_index_port":8983,"redis_client_host":"localhost","redis_client_port":6379,"redis_client_password":"","file_public_path":"sites\/default\/files","file_private_path":"sites\/default\/files\/private","file_directory_path":"site\/default\/files","file_temporary_path":"\/tmp","file_directory_temp":"\/tmp","css_gzip_compression":false,"js_gzip_compression":false,"page_compression":false},"hash_salt":"","config_directory_name":"sites\/default\/config","drupal_hash_salt":""}
Installing (automatically done for new repo)
Running the robo install command will run composer install to add all required dependencies and then install the site and import the exported configuration.
robo install