Skip to content
View vincentmoulene's full-sized avatar

Block or report vincentmoulene

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Macro and recursivity twig to build ... Macro and recursivity twig to build tree folders with documents
    1
    {% macro folder(links, documents) %}
    2
      {% for link in links %}
    3
        <li>
    4
          <b>{{ link.name.value }}</b>
    5
    
                  
  2. Drupal 8 cleanup script Drupal 8 cleanup script
    1
    drupalclean() {  
    2
      echo "🌪  💩  Running Drupal Cleaning after git pull/merge"
    3
      ./../vendor/bin/drupal update:execute -y
    4
      ./../vendor/bin/drush cr
    5
      # Sometimes Drupal 8.4.x import configs in wrong orders.
  3. Run mailcatcher with DRUPAL 8 Run mailcatcher with DRUPAL 8
    1
    $ mailcatcher --smtp-port 10025
    2
    Starting MailCatcher
    3
    ==> smtp://127.0.0.1:10025
    4
    ==> http://127.0.0.1:1080
    5
    *** MailCatcher runs as a daemon by default. Go to the web interface to quit.