kepford / Drupal-Scaffold

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LCM Drupal 8 Scaffolding

Build Status Dependency Status

This is a boilerplate Drupal 8 build that bundles some standard tools to make it a good starting point for an enterprise scale Drupal build. It is conceptually similar to drupal-composer/drupal-scaffold, but it has a much simpler (and more manual) Composer setup, and includes additional tools. For additional information on this project, see the 2016 Badcamp presentation slides

Initial Project Setup

(These are only needed for creating a new project repository. Remove this section of the readme once you are done.)

  1. Run the following command to clone this project down. Replace PROJECTNAME with the name of the folder you want to create for the project.
composer create-project lastcall/drupal-scaffold PROJECTNAME
  1. Configure nvm to use the latest stable version nvm install stable; nvm use stable;
  2. From the docroot: npm install to install nodejs dependencies.
  3. From the docroot: gulp install (or node_modules/.bin/gulp install if you don't have gulp installed globally) to install bower and composer dependencies.
  4. Edit the composer.json, package.json, and bower.json and rename the project as needed.
  5. Rename the scaffold theme to match the project (including JS and SCSS files).
  6. Initialize a new git repository and push work to it as normal

Getting started on an already prepared project

(These will be used when working from a repo already prepared for a specific project)

  1. Clone the repository to your local environment
  2. Initalize nvm: nvm install
  3. Install node packages: npm install
  4. Install composer and bower packages: gulp install (or node_modules/.bin/gulp install if you don't have gulp installed globally)
  5. Commit and push work to repository as normal

Adding Modules/Themes

You can use composer to bring in modules and themes. Just run:

composer require drupal/ctools

Contributed modules and themes are .gitignored by default, meaning you need to run gulp install each time you clone the repository down.

About

License:GNU General Public License v2.0


Languages

Language:PHP 67.2%Language:HTML 9.2%Language:JavaScript 9.0%Language:ApacheConf 7.1%Language:Perl 4.6%Language:Shell 1.5%Language:CSS 1.1%Language:Gherkin 0.3%