foo bar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
run_tests: | |
stage: test | |
script: | |
- npm install | |
- ./bin/www & | |
- npm test |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
"production": { | |
"host": process.env.RDS_HOSTNAME, | |
"port": process.env.RDS_PORT, | |
"username": process.env.RDS_USERNAME, | |
"password": process.env.RDS_PASSWORD, | |
"database": "example", | |
"dialect": "postgres" | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
image: node:4.4.7 | |
services: | |
- postgres:9.5.3 | |
before_script: | |
- npm install | |
all_tests: | |
script: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ bundle install | |
You are trying to install in deployment mode after changing | |
your Gemfile. Run `bundle install` elsewhere and add the | |
updated Gemfile.lock to version control. | |
If this is a development machine, remove the /usr/src/app/Gemfile freeze | |
by running `bundle install --no-deployment`. | |
You have added to the Gemfile: | |
* jquery-ui-rails |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function test123_node_view(\Drupal\Core\Entity\EntityInterface $node, \Drupal\entity\Plugin\Core\Entity\EntityDisplay $display, $view_mode, $langcode) { | |
dpm($node); | |
} | |
/* | |
Recoverable fatal error: Argument 1 passed to test123_node_view() must implement interface Drupal\Core\Entity\EntityInterface, array given in test123_node_view() (line 28 of modules/custom/test123/test123.module). | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PATH = $PATH:$HOME/bin | |
PATH = $PATH:/usr/bin | |
PATH = $PATH:/foo/bar | |
export PATH | |
##################### | |
export PATH = $PATH:\ | |
$HOME/bin:\ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
*= require rails_bootstrap_forms | |
*= require_tree ../../../vendor/assets/stylesheets/. | |
*= require_tree . | |
*/ | |
@import "bootstrap-sprockets"; | |
@import "bootstrap"; | |
@charset "utf-8"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Doctrine\Common\Annotations\AnnotationException] | |
[Semantical Error] The class "Drupal\Console\Annotation\DrupalCommand" is not annotated with @Annotation. Are you sure this class c | |
an be used as annotation? If so, then you need to add @Annotation to the _class_ doc comment of "Drupal\Console\Annotation\DrupalCo | |
mmand". If it is indeed no annotation, then you need to add @IgnoreAnnotation("DrupalCommand") to the _class_ doc comment of class | |
Drupal\Console\Command\Migrate\DebugCommand. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
drush generate-content 0 --kill --types=article |