Giter Club home page Giter Club logo

Metadrop's Drupal Boilerplate

Create project

Introduction

This repository is a Drupal project that can be setup locally using docker.

Stack

docker-compose infrastructure

Based on wodby/docker4drupal, with some tweaks to speed-up your development. The stack is configured as follows:

Container Versions Service name Image Enabled by default
Nginx 1.19, 1.18 nginx [wodby/nginx]
Apache 2.4 apache [wodby/apache]
PHP 8.0, 7.4, 7.3, 7.2 php [wodby/drupal-php]
MariaDB 10.5, 10.4, 10.3, 10.2 mariadb [wodby/mariadb]
PostgreSQL 13, 12, 11, 10, 9.x postgres [wodby/postgres]
Redis 6, 5 redis [wodby/redis]
Memcached 1 memcached [wodby/memcached]
Varnish 6.0, 4.1 varnish [wodby/varnish]
Node.js 14, 12, 10 node [wodby/node]
Drupal node 1.0 drupal-node [wodby/drupal-node]
Solr 8, 7, 6, 5 solr [wodby/solr]
Elasticsearch 7, 6 elasticsearch [wodby/elasticsearch]
Kibana 7, 6 kibana [wodby/kibana]
OpenSMTPD 6.0 opensmtpd [wodby/opensmtpd]
Mailhog latest mailhog [mailhog/mailhog]
AthenaPDF 2.16.0 athenapdf [arachnysdocker/athenapdf-service]
Rsyslog latest rsyslog [wodby/rsyslog]
Blackfire latest blackfire [blackfire/blackfire]
Webgrind 1.8 webgrind [wodby/webgrind]
Xhprof viewer latest xhprof [wodby/xhprof]
Adminer 4 adminer [wodby/adminer]
phpMyAdmin latest pma [phpmyadmin/phpmyadmin]
Selenium chrome 3.141 chrome [selenium/node-chrome]
Selenium hub 3.141 hub [selenium/hub]
Traefik v2.0 traefik [_/traefik]
Mkdocs latest mkdocs [metadrop/docker-mkdocs]
Portainer latest portainer [portainer/portainer]
BackstopJS 4.4 backstopjs [backstopjs/backstopjs]

There is a docker-compose.override.yml.dist file including some container definitions like adminer and mkdocs. This is done with the purpose of differencing the local environment stack from the CI environment stack. The docker-compose.override.yml is git-ignored so your stack gets clean.

Drupal project folder structure

The folder structure skafold is based on drupal-composer/drupal-project so all your dependencies are managed by composer, drupal is required as drupal/core package and web-root files are automatically generated via drupal-scaffold composer plugin.

Drush (Drupal Shell)

Drush is a command line shell for Drupal, and a swiss army knife letting developers to do mostly everything they can do by user interface, and much more. Drush is delivered with an excellent code generator to speed-up the development process.

Get more information about drush:

Mkdocs documentation manager.

The simplest way to manage your project documentation, written in markdown format, and displayed in a comfortable and styled html autogenerated site. The text-plain markdown format have the following advantages over other systems:

  • It's quick to maintain.
  • It's supported by version control systems.
  • It's reviewable via merge requests.
  • It's standard.
  • It's free.

Mkdocs official site.

Grumphp and (do not) forget about coding standards.

Because quality matters, the metadrop/drupal-boilerplate is delivered with Grumphp, a tool to ensure developers follow the Drupal coding standards and best practices. To make your projects fit the highest quality assurance, a git-hook is automatically installed so is not possible to commit any change without accomplishing those quality requirements. Grumphp is already configured (so you don't need to worry about that) making the following quality checks:

  • Git commit message:

    • Ensures that the commit message subject line doesn't have a trailing period.
    • Ensures that the commit message subject match with Issue #[0-9]: Subject format.
    • Max subject width 130.
  • phplint: Detects PHP files syntax errors.

  • yamllint: Detects YAML files syntax errors.

  • composer: Perform composer.json and composer.lock validation.

  • jsonlint: Detects json files syntax errors.

  • drupalcheck: Check Drupal code for deprecations and discover bugs via static analysis.

  • phpcpd: Copy/Paste detector to avoid duplicated code.

  • phpcs: Check if your code accomplish the following standards:

Phpqa

If you want use the static analysis tools manually, or you need to add it to your continuous integration system, there is a phpqa configuration for it.

To run it, just run:

docker-compose exec php phpqa

Behavior Driven Development on natural language with Behat.

Behavior Driven Development is supported on a natural language thanks to Behat. The boilerplate is delivered with Behat preconfigured, so you just need to start writing your tests. Some example tests are also provided. Aditionally to behat, some libraries are included improving the drupal support, adding several behat testing steps for the most common use cases such as logging as a user with a particular role, creating testing content, finding expressions within content regions, etc.

Here are the bundled libraries:

Run Behat tests

If you want to execute every behat tests just run:

docker-compose exec php behat

Unit testing with phpunit

Test Driven Development focus on testing your code to ensure it does what is expected across refactors. This kind of tests are known as Unit tests, and in PHP can be implemented with phpunit.

PHPUnit is a framework to perform unit tests on your php projects. The boilerplate is bundled with phpunit preconfigured so you can focus on write your unit tests.

Scripthor toolset

Scripthor is our set of scripts for our daily routine, to speed up the development workflow.

Til today, we provide the following scripts:

  • reload-local.sh: Reload your local environment setting everything up for a new developer, a new branch, or just to ensure your changes won't break production during the deployment.
  • frontend-build.sh: Compile your sass and js-es6 files inside docker so you don't need to have node or gulp installed on your machine. Forget about version issues.
  • copy-content-config-entity-to-module.sh: For a given content entity (content type, paragraph, custom block type...) it will take the entity definition, all its fields, form configuration and view modes and will copy them to the module of your choice.

Backstopjs

BackstopJS automates visual regression testing of your responsive web UI by comparing DOM screenshots over time.

  • Documentation

  • Generate references:

    make backstopjs-reference
    
  • Run regressions tests:

    make backstopjs-test
    

Buffet of selected modules

We are updating or selection of required modules to ensure you won't forget anything. The modules bundled will solve the needs of different areas such as SEO, security, content editing, themming or deployments across different environments.

Stylelint css

Stylelint A mighty, modern linter that helps you avoid errors and enforce conventions in your styles.

Installation

  • Install stylelint as dependency on your custom theme folder

    npm i stylelint --save-dev
    
  • Install stylelint scss plugin

    npm i stylelint-scss --save-dev
    
  • Create .stylelintrc.yml file with your stylelint rules

    # @TODO: Needs to be defined a standard base
    # Base on stylelint-config-recommended
    plugins:
      - stylelint-scss
    rules:
      # Rules references https://stylelint.io/user-guide/rules/list
      color-no-invalid-hex: true
      font-family-no-duplicate-names : true
      font-family-no-missing-generic-family-keyword: true
      function-calc-no-invalid: true
      # function-calc-no-unspaced-operator: true,
      function-linear-gradient-no-nonstandard-direction: true
      string-no-newline: true
      unit-no-unknown: true
      property-no-unknown: true
      keyframe-declaration-no-important: true
      # declaration-block-no-duplicate-properties: [
      #   true,
      #   {
      #     ignore: [consecutive-duplicates-with-different-values]
      #   }
      # ],
      # declaration-block-no-shorthand-property-overrides: true,
      block-no-empty: true
      selector-pseudo-class-no-unknown: true
      selector-pseudo-element-no-unknown: true
      selector-type-no-unknown: true
      media-feature-name-no-unknown: true
      comment-no-empty: true
      # Uncommenting this is hell
      # no-descending-specificity: true,
      no-duplicate-at-import-rules: true
      no-duplicate-selectors: true
      no-empty-source: true
      no-extra-semicolons: true
      no-invalid-double-slash-comments: true
      
      # SCSS-specific
      scss/at-rule-no-unknown: true
      scss/at-each-key-value-single-line: true
      scss/at-extend-no-missing-placeholder: true
      scss/at-function-parentheses-space-before: 'never'
      # scss/comment-no-empty: true
      # scss/dimension-no-non-numeric-values: true
      # scss/no-duplicate-mixins: true
    
  • Run stylelint checker

    npx stylelint 'src/**/*.scss'
    
  • You can run stylelint from npm
    Add to the package.json the following script:

  "scripts": {
...
    "css:lint": "npx stylelint 'src/**/*.scss'"
...

Then execute the following command

npm run css:lint
  • If you use webpack you can add stylelint to your webpack.mix.js
    Install webpack stylelint plugin:
npm i stylelint-webpack-plugin --save-dev

Then add the following lines to the webpack file.

const stylelint = require('laravel-mix-stylelint');

...

mix
  .stylelint({
    configFile: path.join(__dirname, '.stylelintrc.yml'),
    context: './src',
    failOnError: false,
    files: ['**/*.scss'],
    fix: true,
  })

Installation

To create a new project based on this boilerplate, the recommended method is using composer create-project:

composer create-project  --ignore-platform-reqs metadrop/drupal-boilerplate my-project

Then, complete the setup following these steps:

  1. Copy the .env.example file to .env and edit it to fit your needs.
  2. Copy the docker-compose.override.yml.dist file to docker-compose.override.yml. Look for the services.traefik.ports value. There you have the port mapping in the form <your local machine port>:<container port>. Note that WEB_SERVER_PORT is the local machine port which is mapped to point the web server port inside the container.
  3. Start containers running docker-compose up -d in repository root.
  4. To access the site go to URL: http://<PROJECT_BASE_URL>:<WEBSERVER_PORT>/
  5. To access the project's documentation go to URL: http://docs.\<PROJECT_BASE_URL>:<WEBSERVER_PORT>/

Omar Mohamad - El Hassan Lopesino's Projects

behat-rest-testing icon behat-rest-testing

To help developers to easily understand how to do feature tests with Behat, and to start writing feature tests for REST APIs.

ddblog icon ddblog

Represent drupal dblog into bubble chart

ddev-backstopjs icon ddev-backstopjs

ddev addon to provide a backstopjs container for visual regression testing in Metadrop Aljibe

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.